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. wombat22

    Trying to parse a text file into a grid or tab or form or ?

    Try splitting each record into an array Dim MyArray() As String '* MyArray = Split(record, "|") For i = 0 To UBound(MyArray) 'any code working with each field in the array 'including using the first field as the tab name Next i hope this helps!
  2. wombat22

    Input from Keyboard and Bar Code Scanner

    Another method, although not entirely fool proof is that you allow the scanners to send the start/stop characters of the bar code. This isn't usually "seen" in the eye readable format, so when the user types the barcode it will be without the start/stop characters. This is how I've set it up -...

Part and Inventory Search

Back
Top