Paxar 6039 Printer User Manual


 
Sample Applications A-39
C39.VerifyCD = false; // Don't Verify C/Ds
C39.Trioptic = false; // Disable Triopic Code 39
C39.Code32Prefix = false; // No CODE32 prefix
C39.XlateToCode32 = false; // Don't Convert to CODE32
C39.FixedLength = false; // Variable Length Enabled
C39.Length1 = 2; // Variable Length1 = 2
C39.Length2 = 55; // Variable Length2 = 55
//************************************************************
//* Code 128 Barcodes
//************************************************************
Ultra.Scan.Code128 C128 = new Ultra.Scan.Code128();
// Instantiate Code128 class
C128.Enable = true; // Enable Code 128
C128.UCCEAN128 = true; // Enable UCCEAN128
C128.ISBT128 = true; // Enable ISBT128
//************************************************************
//* Interleaved 2 of 5 Barcodes
//************************************************************
Ultra.Scan.I2of5 I2OF5 = new Ultra.Scan.I2of5();
// Instantiate I2of5 class
I2OF5.Enable = true; // Enable I 2of5 Symbology
I2OF5.VerifyCD = false; // Don't Verify C/Ds
I2OF5.XmitCD = false; // Don't Xmit C/Ds
I2OF5.FixedLength = false; // Variable Length Enabled
I2OF5.Length1 = 2; // Variable Length1 = 2
I2OF5.Length2 = 22; // Variable Length2 = 22
//************************************************************
//* Discrete 2 of 5 Barcodes
//************************************************************
Ultra.Scan.D2of5 D2OF5 = new Ultra.Scan.D2of5();
// Instantiate I2of5 class
D2OF5.Enable = true; // Enable D 2of 5
D2OF5.FixedLength = false; // Variable Length Enabled
D2OF5.Length1 = 2; // Variable Length1 = 2
D2OF5.Length2 = 22; // Variable Length2 = 22
//************************************************************
//* MSI Plessey Barcodes
//************************************************************
Ultra.Scan.MSI MSI = new Ultra.Scan.MSI();
// Instantiate MSI class
MSI.Enable = true; // Enable MSI Barcodes
MSI.Use2CDs = false; // Don't use 2 C/Ds
MSI.UseMod10Mod11CDAlg = false; // Don't use Mod 10
MSI.XmitCD = true; // Xmit C/D
MSI.FixedLength = false; // Variable Length Enabled