Huge Collections of Software Manuals and Knowledgebase

GreatManuals.com
Huge Collections of Software Manuals and Knowledgebase

 
Home Contact us Request to publish your help manuals Request to remove your help manuals

Introduction
 » Softek Barcode Reader
Barcode Toolkit Overview
 » Toolkit Interfaces
 » Supported Barcode Types
 » Program Sequence
 » Performance Considerations
Barcode Toolkit Examples
 » Visual Basic Using DLL
 » Visual Basic Using OCX
 » VB.Net
 » Borland Delphi
Methods
 » Methods
 » GetBarString
 » GetBarStringPos & GetBarStringRect
 » GetBarStringType
 » GetBarStringDirection
 » ScanBarCode
 » ScanBarCodeFromBitmap
 » ScanBarCodeFromDIB
 » SetScanRect
Properties
 » Properties
 » AllowDuplicateValues
 » BitmapResolution
 » Code39Checksum
 » ColorThreshold
 » ConvertUPCEToEAN13
 » LineJump
 » ErrorCorrection
 » ExtendedCode39
 » MaxLength
 » MinLength
 » MinOccurrence
 » MinSpaceBarWidth
 » MultipleRead
 » NoiseReduction
 » PageNo
 » Pattern
 » PdfBpp
 » PdfDpi
 » Photometric
 » PrefOccurrence
 » QuietZoneSize
 » ReadCodabar
 » ReadCode128
 » ReadCode25
 » ReadCode25ni
 » ReadCode39
 » ReadEAN13
 » ReadEAN8
 » ReadUPCA
 » ReadUPCE
 » ReadPatchCodes
 » ReadPDF417
 » ReadNumeric
 » ScanDirection
 » ShowCheckDigit
 » SkewTolerance
 » TifSplitMode
 » TifSplitPath
 » UseOverSampling
 

Methods

The way in which you will be able to use the methods of the toolkit depends on the interface and the programming language used.

Active X Control (OCX) with Visual Basic and VB.Net

retval = ObjectName.MethodName(args)

Example:

nBarcodes = SoftekBarcode1.ScanBarCode("C:\tmp\file.tif")

Active X Control (OCX) with Visual C++

retval = ObjectName.MethodName(args)

Example:

nBarcodes = SoftekBarcode1.ScanBarCode("C:\\tmp\\file.tif")

SoftekBarcode Class with VB.Net

retval = ObjectName.MethodName(args)

Barcode Generator Bookkeeping software Barcode software
Business financial software Billing software Accounting software

 

Example:

Dim barcode As SoftekBarcode
......
nBarcode = barcode.ScanBarCode("C:\tmp\file.tif")

DLL with Visual Basic, VB.Net, Visual C++ etc

Prefix the method names with "st":

stMethodName (args)

Examples:

nBarcode = stScanBarCode("C:\tmp\file.tif")

COM Interface with Visual Basic etc

retval = ObjectName.MethodName()

oBar = CreateObject("SoftekATL.Barcode")
.........
oBar.ScanBarCode("C:\tmp\file.tif")
nBarcode = oBar.BarCodeCount

Home | Contact us | Request to publish your help manuals | Request to remove your help manuals