Softek Software Barcode Reading Toolkits
HOME PRODUCTS DEVELOPERS STORE ABOUT US
Developer Home
Downloads
Sample Code
Support

Help -> Properties -> Overview

The Softek Barcode Reader SDK extracts barcode information from images and bitmaps.

Overview

When set to TRUE the toolkit will search for EAN-13 type barcodes.  

Default value =  TRUE 

Visual Basic using the OCX

[form.]SoftekBarcode.ReadEAN13 = value

Visual Basic using the DLL

Private Declare Function stGetReadEAN13 Lib "SoftekBarcode" () As Boolean
Private Declare Function stSetReadEAN13 Lib "SoftekBarcode" (ByVal newValue As Boolean) As Boolean
stSetReadEAN13 (value)
value = stGetReadEAN13 ()

Visual Basic using COM

oBar = CreateObject("SoftekATL.Barcode")
.........
oBar.ReadEAN13 = value
value = oBar.ReadEAN13

VB.Net using the DLL

Private Declare Function stGetReadEAN13 Lib "SoftekBarcode" () As Boolean
Private Declare Function stSetReadEAN13 Lib "SoftekBarcode" (ByVal newValue As Boolean) As Boolean
stSetReadEAN13 (value)
value = stGetReadEAN13 ()

VB.Net using the SoftekBarcode Wrapper Class

Dim barcode As SoftekBarcode
..........
barcode.SetReadEAN13(value)
value = barcode.GetReadEAN13()

VB.Net using the SoftekBarcodeLib Managed Component

Dim barcode As SoftekBarcodeLib.BarcodeReader
Dim value As Bool
..........
barcode = New SoftekBarcodeLib.BarcodeReader()
..........
barcode.ReadEAN13 = value
value = barcode.ReadEAN13

Visual C++ Using the OCX

BOOL GetReadEAN13() ;
void SetReadEAN13(BOOL value);

Visual C++ Using the DLL

BOOL __stdcall stGetReadEAN13();
BOOL __stdcall stSetReadEAN13(BOOL bNewValue);