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

Recent content by gaba

  1. gaba

    Vertical text in labels or textboxes ?????????

    Just be sure the TextBox and Label are set to allow several lines (Multiline=True for TextBox) (WordWrap=True for Label)and then use vbCrLf to change line like this: Text1 = Text1 & vbCrLf Label1 = Label1 & vbCrLf
  2. gaba

    How do I show a list of unique items in a ComboBox?

    Before you use the AddItem code put in Combo1.Clear and the combobox will only show the items that are added
  3. gaba

    Launching Application via VB6 program

    The easiest way to start a program is to use the Internet Shortcut technique like this: Put a Text1 and a button (Command1) on your form and add this code to Command1_Click: Sub Command1_Click() Dim sFile as string Dim F as Integer sFile = Text1.Text F = FreeFile Open "C:\TEMP.URL&quot...

Part and Inventory Search

Back
Top