• Easy to integrate ITF-14 barcode generation component into your VB.NET Programs
  • Completely written in VB.NET for .NET 2.0/3.0/4.0
  • Encode ITF-14 barcodes with 100% VB.NET sample code provided
  • Generate ITF-14 into valid length of 13 digit, plus a checksum digit
  • Compatible with ITF-14 barcode specification in GS1 system
  • Equipped with 50+ options for specifying ITF-14 barcode size, color, image, etc
  • Mature ITF-14 barcode generating dll with royalty-free and perpetual developer license
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 ITF-14 Valid Characters in VB.NET
There are 2 elements that influence ITF-14 input characters: (a), ITF-14 valid character set; (b), ITF-14 valid length.

(a)ITF-14 Valid Character Set

ITF-14 barcode is a 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.ITF14
barcode.Code = "0123456789023"
barcode.drawBarcode2ImageFile("C://itf14.gif")

(b)ITF-14 Valid Length

ITF-14 barcode is fixed-length linear barcode, which encodes numeric digits 0-9 into 13-digit ITF-14 barcode, excluding a checksum digit in the end. VB.NET ITF-14 barcode allows user to control ITF-14 barcode length using Code property.

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.ITF14
barcode.Code = "1234567890123"
barcode.drawBarcode2ImageFile("C://itf14.gif")





Quick Links