Scanning Functions 4-37
EnableScanning
Description
Allows the scanner to scan the defined bar codes.
Syntax
public void EnableScanning();
Parameters
None
Return Values
None
Example C#
using Ultra;
Ultra.Scan.Control CONTROL = new Ultra.Scan.Control();
// Instantiate class
CONTROL.EnableScanning(); // Enable Scanning
CONTROL.CommitChanges(); //--Save Changes to the Scanner
// Configuration
Example VB.NET
Imports Ultra
Dim CONTROL As New Ultra.Scan.Control ' Instantiate class
CONTROL.EnableScanning() ' Enable Scanning
CONTROL.CommitChanges()
' Save Changes to the Scanner Configuration