Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. BirdieNamNam

    Greek letters in a label

    Thanks a lot Matt, I do not really know what I want to print. The Word export idea seems like an interesting one. I will continue laborating and exploring. The star is for anyone that helps me lot on my road to VB perfection. Thanks! /Sebastian.
  2. BirdieNamNam

    Greek letters in a label

    Great Matt! And I created some code that will make some greek characters: RichTextBox1.SelFontName = "Arial" RichTextBox1.TextRTF = "Kalle D" RichTextBox1.SelStart = 6 RichTextBox1.SelLength = 1 RichTextBox1.SelFontName = "Symbol" RichTextBox1.SelLength = 0 But here comes my next problem...
  3. BirdieNamNam

    Greek letters in a label

    Hi Matt! Ok, I looked into the rich text box, but to me that seems to work in the same way as the ordinary text box. It has a font property, and I cannot set that to multiple fonts, can I? Or am i missing something here? Can you tell me what to write to the rich text box, to display "My...
  4. BirdieNamNam

    Greek letters in a label

    Hello dear friends! I have a delta ([Δ]) letter, that I want to display at a label, surrounded by "normal" letters. The only way I can find to do this is to make three labels, the first with my first "normal" text, the second with the delta letter, and finally the last one with the rest...
  5. BirdieNamNam

    Enter key in SELECT box

    Hello, dear friends! In a HTML form, the Enter key work for jumping from text input to text input, that is from one <INPUT TYPE="text"> to the next input in the form. The same behaviour appears for a SELECT input when hitting the Tab key. Is there any possibility to make the Enter key do the...
  6. BirdieNamNam

    Make input buttons non-printable.

    Works fantastic! Thanks, guys! /Sebastian.
  7. BirdieNamNam

    Make input buttons non-printable.

    OK, great! I'll try it out! /Sebastian.
  8. BirdieNamNam

    Make input buttons non-printable.

    Cool! Thank you. But this means, I have to use two sets of css:s if I want the rest to look the same on screen and on printout... Ok, I can accept this, even if it's not the best I can think of. Thanks, Sebastian.
  9. BirdieNamNam

    Make input buttons non-printable.

    Dear friends! I have some buttons on my form that I don't want to be printed when I print the page. Is it possible to hide them in the printout only? Best regards, Sebastian
  10. BirdieNamNam

    Entering regisry data.

    Hello everyone! I am using the GetSetting and SaveSetting functions to enter data into the registry. this will put my data into a "VB and VBA programs settings" key in the registry. This does not look very nice to me. I want my data in my own key, as "the real" software developers do. Is this...
  11. BirdieNamNam

    How to creata a license number routine.

    Hello dear friends! I have build an application that I'm planning to sell. It will be distributed as shareware and I will sell licenses. My concern here is how to handle the registration things. I am not asking for a fullproof system, but I want to avoid "easy" distribution by the buyers. It...
  12. BirdieNamNam

    Count the number of OPTIONS in a SELECT box.

    Hehe... that was really the case. I had misspelled it in the code. Thanks for the correction! Now it works fine! /Sebastian.
  13. BirdieNamNam

    Count the number of OPTIONS in a SELECT box.

    Hello dear friends! I want to get the number of options from a SELECT box in a HTML form. Can I do this? I can't find the property anywhere. I have tried (the form's name is "config") document.config.elements[i].size document.config.elements[i].length...
  14. BirdieNamNam

    How to comunicate with modal forms?

    Oh tTo me it looks like the properties of the form and the public variables of the form are more or less the same thing. Thanks, I'll program proper! /Sebastian.
  15. BirdieNamNam

    Relocate multiple controls.

    Hi Hype! So easy... thanks! /Sebastian.
  16. BirdieNamNam

    Relocate multiple controls.

    Hello John! Thanks for your answer. The "controls" collection will contain all my controls, right? Or is there a way to create my own collection of controls, and only include the once I want to manipulate? And for the frame solution, is there any way to not make the frame itself visible? Then...
  17. BirdieNamNam

    How to comunicate with modal forms?

    Ok. Thanks Nick, I think I'll stay with my global varables then. /Sebastian.
  18. BirdieNamNam

    How to comunicate with modal forms?

    Hello dear friends! I have som modal forms that I use as input to some things in my main form. The communication, that is the variables set by the modal form, is taking place through global variables. Is there a smarter way to do this, something like calling variables set in the form from the...
  19. BirdieNamNam

    Relocate multiple controls.

    Hello, dear friends! I have a form. In the top part of the form there are a number of controls. These top controls can be shown/hidden by the user (in a menu). Below the optional controls there are many more controls. If the user choses to hide the top control, I want all the other controls to...
  20. BirdieNamNam

    Shape in front of textboxes?

    Hi again Jeff! I tried that, but I didn't make it. I thought it was because the 3D/flat propertie could only be set in design stage. Or is there a way around that as well? Anyway, I think my growing boxes showed up really well, so I'll stick to them. Thanks again. /Sebastian.

Part and Inventory Search

Back
Top