Showing 6 Result(s)

Norman Joseph Woodland, Barcode Inventor, Passes Away

It is clear that any company working in the barcode reading industry owes a huge debt of gratitude to Norman Woodland, since without barcodes there would be no need for barcode reading. As silly, and obvious, as that statement sounds it is only a small distance from the position Norman found himself in following the …

Common error when using the COM object

We often get emails asking why the ScanBarCode method in the SoftekATL.Barcode OCX object returns the value 0 when it works fine in other interfaces. The reason for this is that in the COM interface the number of barcodes found by the ScanBarCode method is stored in the BarCodeCount property. For example, the following code is …

Side by Side Error

When distributing SoftekBarcodeLib2.dll you may find that you get a “side by side” error message which references the component. For Version 7.4.1 and later…   For x86 based systems, the solution is to install the Microsoft Visual C++ 2008 SP1 Redistributable Package (x86) from the following link: http://www.microsoft.com/downloads/en/details.aspx?FamilyID=a5c84275-3b97-4ab7-a40d-3802b2af5fc2&displaylang=en For x64 based systems, the solution is to install the Microsoft …

Unicode problems in Delphi 2009

Delphi 2009 developers may have found some problems passing strings to and from the toolkit. This seems to be down to unicode support in Delphi 2009 and can be resolved with some simple code changes. For example, in previous versions of Delphi you might have code similar to: NumCodes:=stScanBarCode(PChar(OpenDialog1.FileName)); …but in Delphi 9 this needs …