How to print barcodes?

  • Thread starter Thread starter Mika M
  • Start date Start date
M

Mika M

Hello!

I would like to know recommendations and experiences how to print barcodes
using VB .NET 2003 and Windows Form application. What would I need to make
it possible to use my application to create barcode paper printings. Do I
need extra components or is it possible to use Crystal Reports which is
shipped with Visual Studio setting font to barcode on the MyReport.rpt ?

Earlier I used VB6 simply using Printer.Print after setting Printer.Font to
barcode font, but don't know what's the best way using VB .NET.
 
Mika,

basically you have two choices. For a rather simple barcode like Code
39 you can use a barcode font. See

http://www.axelwolf.org/printing_fonts.php

for an introduction to barcode fonts. Pros and cons of fonts are also
discussed.

For forms based applications you can also use an Barcode ActiveX
control. These controls can give you more control over the parameters
of the barcode than a font does and will also handle checksum
calculation etc. See

http://www.axelwolf.org/printing_ax.php
http://www.winbarcode.com/axlinear.php (Commercial)

Regards, Axel Wolf
http://www.axelwolf.org
 
Back
Top