• Easy to integrate Leitcode barcode generation component into your VB.NET Programs
  • Completely written in VB.NET for .NET 2.0/3.0/4.0
  • Support numeric data and uppercase letters to be encoded in Leitcode
  • Compatible with Leitcode barcode specification
  • Simple to set Leitcode barcode data length to 13 digits only
  • Automatically add a check digit for Leitcode barcodes
  • User-defined options for customize Leitcode barcode size, image, color, etc
  • Professional Leitcode barcode generation component
Installation of .NET Barcode Generator in VB.NET
  1. Download BusinessRefinery.com VB.NET barcode component and unzip
  2. Add BusinessRefinery.Barcode.Win.dll or BusinessRefinery.Barcode.Web.dll to your .NET project reference
  3. Add .NET Barcode Generator .NET Windows Control Library to .NET Visual Studio Toolbox
  • Right click .NET Visual Studio Toolbox, select menu Choose Items...
  • In "Choose Toolbox Items" form, click button "Browse...", and select dll BusinessRefinery.Barcode.Win.dll or BusinessRefinery.Barcode.Web.dll
Encode Leitcode Valid Characters in VB.NET
There are 2 elements that influence Leitcode input characters: (a), Leitcode valid character set; (b), Leitcode valid length.

(a)Leitcode Valid Character Set

Leitcode barcode is numeric-only linear barcode which encodes:

  • 0, 1, 2, 3, 4, 5, 6, 7, 8, 9

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.LEITCODE
barcode.Code = "0123456789012"
barcode.drawBarcode2ImageFile("C://leitcode.gif")

(b) Leitcode Valid Length

Leitcode barcode is fixed-length linear barcode, which encodes 13 digits only, excluding a checksum digit in the end. VB.NET Leitcode barcode allows user to control Leitcode barcode length using Code property.

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.LEITCODE
barcode.Code = "9876543210123"
barcode.drawBarcode2ImageFile("C://leitcode.gif")





Quick Links