
Intermec.OpenScanner()
Note:
This will open the Intermec scanner device for reading barcode labels.
This should be executed on form open.
Intermec.Scan()
Note:
This initiates a soft scan.
Database.Reset()
intId = NumberGenerator.GetUniqueNumber()
strBarcode = Intermec.GetBarcode()
Database.AddColumn("ID", intId)
Database.AddColumn("BARCODE", strBarcode)
Database.AddRecord("TABLE1")
Note:
This code segment simply saves the barcode scanned into the database.
This should be triggered on the Form’s Action – Scan Complete property.