TEC-IT
TECIT

FAQ: TBarCode OCX

FAQ TBarCode OCX: Programming, Visual Basic, MS Access, Navision, Visual C++, PHP, Java, Distorted Barcode Output and more...

 

Code128

How to use the Compressed Mode of Code 128?

Simply select Code128 as the bar code type. Make sure to clear the Format string. Code 128 auto compresses data by default (and subset switching is done automatically).

Human Readable Text Rotation

Human Readable Text is not Rotated with Barcode

This occurs if the currently selected font does not support rotation. Select a TrueType font to solve the problem (e. g. Arial).

Human Readable Text Font

StdFont OLE object

Change Font in Microsoft Visual Basic, Visual C++, VBscript, PHP

Visual Basic

Dim fnt As stdole.StdFont
Set fnt = new stdole.StdFont
fnt.Name = "Arial"
Set TBC.Font = fnt

Microsoft Visual C++

COleFont cOF = m_TBarCode.GetFont();
tagCY cy = cOF.GetSize();
cOF.SetName("Arial"); // Font Family = Arial
cy.int64 = cy.int64 * 1.5; // add 50% to original size
cOF.SetSize(cy);
m_TBarCode.SetFont((LPDISPATCH) cOF);
cOF.ReleaseDispatch();

VBscript®ASP):

Dim fnt
set fnt = Server.CreateObject("StdFont")
fnt.name = "Arial"
set TBC.Font = fnt

PHP (Windows):

$bcobj = new COM("TBarCode7.TBarCode7");
$fntobj = new COM("StdFont");
$fntobj->Name="Times";
$fntobj->Size=12;
$bcobj->Font=$fntobj;

Human Readable Text Font

How to Change the Font in Navision / Dynamics NAV

You need to generate an Automation Variable of type OLE Automation.StdFont. This font object is then assigned to the TBarCode COM object.

Name      DataType      Subtype
StdFont   Automation    'OLE Automation'.StdFont
    CLEAR(BC);
    BC.Refresh;
    IF ISCLEAR(StdFont) THEN
      CREATE(StdFont);
    StdFont.Size := 30;
    StdFont.Name := 'Arial';
    BC.Font      := StdFont;

Mail Merge Documents with Barcodes

How can I create Mail Merge Documents with Barcodes in Word?

For inserting multiple barcodes you can use the Serial Letter function in the TBarCode Toolbar. This function allows you to replace all marked text passages with barcodes after the mail merge document was created. For more information about the TBarCode Toolbar and its functionality, please refer to the TBarCode OCX User Manual.

If you encounter speed problems you may alternatively use the VBA macro "BarcodeSeries" which can be downloaded in the TBarCode Download Area. The required steps for using the macro are explained in the enclosed text document.

Printing Problems

Distorted Barcode Output (Toshiba TEC, DataMax printers)

This is confirmed to be a printer driver problem. Along other printer models this effect also happens with Toshiba TEC and DataMax printers.

The solution is to change the draw mode of TBarCode:

TBarCode V8+

Set the ActiveX Property DrawMode to Compatible.

TBarCode V7

  1. Create a file barcode.ini with the following content:
  2. [DRAW_MODE]
    UseGDIRect=1
  3. Copy the barcode.ini file to the installation directory of TBarCode (where you can find the file tbarcode7.ocx or tbarcode7.dll).
  4. Restart the program.

Reporting

Bar Codes in Microsoft Access

The common method to print bar codes from within Microsoft® Access is by using a report. The TBarCode Object need only be inserted once at the report definition. Therefore you need a table (query) which servers as data source for the report and a data field, that specifies the content of the bar code.

How to insert TBarCode OCX (as ActiveX Control) in a report?

Open a new report in design view. If you need a bar code for each record, then insert the ActiveX® Control into the detail area and position it at the desired place.

Thereto you choose Insert - ActiveX Control in the main menu. You will see a list of all available elements, from which you select TBarCode.

The control will be inserted in the detail area. The detail area will be printed once for each record set in the table (or query).

How to control the content of the bar code in a report?

In design mode right-click the TBarCode - ActiveX® Control. You will see a menu where you select Properties.

In the field Control Source located in the submenu data you can define the content of the control. That means you can select the table or query field which is encoded as bar code.

Visual Basic

Runtime Error '429': ActiveX component can't create object

You may get this runtime error if you didn't specify the full Prog-ID with CreateObject. Reference the TBarCode Type Lib in the project settings, and use the following commands to create a TBarCode object in VB:

      Dim objTB As TBarCode8
      Set objTB = CreateObject("TBarCode8.TBarCode8")
      objTB.AboutBox

For further trouble shooting read Microsoft Knowledge Base Article - 244264

COM and Java

How can I use your ActiveX Control in JAVA?

ActiveX Controls are COM based so they can be treated as objects. If you have a bridge between Java and ActiveX you can easily integrate TBarCode OCX into your Java projects.

We recommend to try out OLEJA, which is a tool to create Java components from COM components. Here is the link to the product page:

Another possibility is the open source toolkit JAWIN API:

(Please note that TEC-IT can not offer support for third party products).
TEC-IT

© TEC-IT Datenverarbeitung GmbH, Austria  ++43(0)7252/72720  office@tec-it.com