Paxar 6039 Printer User Manual


 
A-40 Programmer’s Manual
MSI.Length1 = 1; // Variable Length1 = 1
MSI.Length2 = 55; // Variable Length2 = 55
//************************************************************
//* Code 93 Barcodes
//************************************************************
Ultra.Scan.Code93 C93 = new Ultra.Scan.Code93();
// Instantiate Code 93 class
C93.Enable = true; // Enable Code 93 Symbology
C93.FixedLength = false; // Variable Length Enabled
C93.Length1 = 2; // Variable Length1 = 2
C93.Length2 = 55; // Variable Length2 = 55
//************************************************************
//* Codabar Barcodes
//************************************************************
Ultra.Scan.Codabar CODABAR = new Ultra.Scan.Codabar();
// Instantiate Codabar class
CODABAR.Enable = true; // Enable Codabar Symbology
CODABAR.FixedLength = false; // Variable Length Enabled
CODABAR.Length1 = 1; // Variable Length1 = 1
CODABAR.Length2 = 55; // Variable Length2 = 55
//************************************************************
//* General Settings
//************************************************************
Ultra.Scan.General GENERAL = new Ultra.Scan.General();
// Instantiate General class
GENERAL.Preamble = ""; // Clear any preambles
GENERAL.Postamble = ""; // Clear any postambles
GENERAL.Timeout = 30; // No Scan T/O = 30tenths/sec
GENERAL.AimDuration = 0; // Aim Duration
GENERAL.BdirRedundancy = false;
// Disable BiDirection Redundancy
GENERAL.LinearSecurity = 1; // Set Linear Security = 1
GENERAL.GoodScanWav = "\\Windows\\goodscan.wav";
// Set GoodScan WAV File
GENERAL.NoReadWav = "\\Windows\\noread.wav";
// Set NoREAD WAV File
// Save Changes to the Scanner Configuration which builds a
// new Ultra.cfg
Scanner.CommitChanges();