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

Softek Barcode Reading SDK - Visual C++

The Softek Barcode Reading Toolkit extracts barcode information from image files and memory bitmaps. This page show how you can use the software in Visual C++ under Developer Studio and Visual Studio. 

Use the following links to view code snippets for the 2 different interfaces commonly used from Visual C++...

Use the following download links to get your development started...

Download windows toolkit

Windows Toolkit 30 day evaluation

Download sample vbnet project

Visual C++ sample project

Standard Windows DLL

//Set properties
stSetReadCode128 (1) ;

//Read barcodes
int nBarCodes = stScanBarCode(m_ImageFile) ;

//Get results
for (int i = 1; i <= nBarCodes; i++)
      CString strBarCode = stGetBarString(i) ;

back to top

ActiveX/OCX Interface

//Set properties
m_barcode.SetReadCode128 (1) ;

//Read barcodes
int nBarCodes = m_barcode.ScanBarCode(m_ImageFile) ;

//Get results
for (int i = 1; i <= nBarCodes; i++)
      CString strBarCode = m_barcode.GetBarString(i) ;

back to top