4-42 Programmer’s Manual
SendScanStatus
Description
Enable Send Scan Status to return the data after any scan. This data
precedes the bar code and includes the length of data and bar code type.
Syntax
public bool SendScanStatus
Parameters
SendScanStatus TRUE Enable Send Scan Status
FALSE Default
Return Values
None
Example C#
using Ultra;
Ultra.Scan.General GENERAL = new Ultra.Scan.General();
// Instantiate Class
GENERAL.SendScanStatus = false;
// Send Scan Status
Ultra.Scan.Control CONTROL = new Ultra.Scan.Control();
// Instantiate class
CONTROL.CommitChanges();
//--Save Changes to the Scanner Configuration
Example VB.NET
Imports Ultra
Dim GENERAL As New Scan.General ' Instantiate class
Dim CONTROL As New Scan.Control ' Instantiate class
GENERAL.SendScanStatus = False
' Send Scan Status
CONTROL.CommitChanges()
' Save Changes to the Scanner Configuration