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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by BirdieNamNam

  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.

Part and Inventory Search

Back
Top