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 strongm 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. nebelmann

    mp3's

    Are you burning the mp3's to the disk as mp3's or CDAs (Audio CD format)?
  2. nebelmann

    Backwards text boxes???

    Try using StrReverse(Text1) It will return an error if the string is NULL.
  3. nebelmann

    Direct Printing to Printer

    Enter the following command (it does not apper in the dropdown list): Printer.Print "Hello" or Printer.Print strHello
  4. nebelmann

    textwidth & textheight

    The following is an example of what I've done in my programs: Create a form with one textbox named "Text1". Option Explicit Dim intKey As Integer Private Sub Text1_Change() Dim intLength As Integer 'Set Textbox width to 250 and alignment to center Me.Font = Text1.Font...
  5. nebelmann

    Converting Types

    cLng(Varient) converts Varient into long cLng(String) converts String into long cInt(Varient) converts Varient into integer cInt(String) converts String into integer cStr(Long) converts long into String cVar(Long) converts long into varient cStr(Integer) converts integer into String...
  6. nebelmann

    Error 9, subscript out of range

    On line one you have DIM strArray(7) as String On line six you have DIM strArray(5) as String The program will use the last DIM statement
  7. nebelmann

    how do you print line by line

    After the program filters the string, put the following line before EXIT SUB:<br> <br> Printer.Print STRING<br> <br> It will advance to the next line when it is read again.<br> <br> Be Aware, this will tie up the printer until the program ends.

Part and Inventory Search

Back
Top