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

Help -> Properties -> ReadUPCE

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

ReadUPCE 

Overview

When set to TRUE the toolkit will search for UPC-E type barcodes.  

Default value =   FALSE

Visual Basic using the OCX

[form.]SoftekBarcode.ReadUPCE = value

Visual Basic using the DLL

Private Declare Function stGetReadUPCE Lib "SoftekBarcode" () As Boolean
Private Declare Function stSetReadUPCE Lib "SoftekBarcode" (ByVal newValue As Boolean) As Boolean
stSetReadUPCE (value)
value = stGetReadUPCE ()

Visual Basic using COM

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

VB.Net using the DLL

Private Declare Function stGetReadUPCE Lib "SoftekBarcode" () As Boolean
Private Declare Function stSetReadUPCE Lib "SoftekBarcode" (ByVal newValue As Boolean) As Boolean
stSetReadUPCE (value)
value = stGetReadUPCE ()

VB.Net using the SoftekBarcode Wrapper Class

Dim barcode As SoftekBarcode
..........
barcode.SetReadUPCE(value)
value = barcode.GetReadUPCE()

VB.Net using the SoftekBarcodeLib Managed Component

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

Visual C++ Using the OCX

BOOL GetReadUPCE() ;
void SetReadUPCE(BOOL value);

Visual C++ Using the DLL

BOOL __stdcall stGetReadUPCE();
BOOL __stdcall stSetReadUPCE(BOOL bNewValue);