ReadCode25
Overview
When set to TRUE the toolkit will search for type 2 of 5 interleaved barcodes.
Default value = TRUE
Visual Basic using the OCX
[form.]SoftekBarcode.ReadCode25 = value
Visual Basic using the DLL
Private Declare Function stGetReadCode25 Lib "SoftekBarcode" () As Boolean
Private Declare Function stSetReadCode25 Lib "SoftekBarcode" (ByVal newValue As Boolean) As Boolean
stSetReadCode25 (value)
value = stGetReadCode25 ()
Visual Basic using COM
oBar = CreateObject("SoftekATL.Barcode")
.........
oBar.ReadCode25 = value
value = oBar.ReadCode25
VB.Net using the DLL
Private Declare Function stGetReadCode25 Lib "SoftekBarcode" () As Boolean
Private Declare Function stSetReadCode25 Lib "SoftekBarcode" (ByVal newValue As Boolean) As Boolean
stSetReadCode25 (value)
value = stGetReadCode25 ()
VB.Net using the SoftekBarcode Wrapper Class
Dim barcode As SoftekBarcode
..........
barcode.SetReadCode25(value)
value = barcode.GetReadCode25()
VB.Net using the SoftekBarcodeLib Managed Component
Dim barcode As SoftekBarcodeLib.BarcodeReader
Dim value As Bool
..........
barcode = New SoftekBarcodeLib.BarcodeReader()
..........
barcode.ReadCode25 = value
value = barcode.ReadCode25
Visual C++ Using the OCX
BOOL GetReadCode25() ;
void SetReadCode25(BOOL value);
Visual C++ Using the DLL
BOOL __stdcall stGetReadCode25();
BOOL __stdcall stSetReadCode25(BOOL bNewValue); |