• Easy to integrate Interleaved 2 of 5 barcode generation component into your VB.NET Programs
  • Completely written in VB.NET for .NET 2.0/3.0/4.0
  • Encode Interleaved 2 of 5 barcodes with 100% VB.NET sample code provided
  • Compatible with Interleaved 2 of 5 barcode specification in ISO - ISO / IEC 16390 (2nd edition 2007-06-15)
  • Equipped with 50+ options for specifying Interleaved 2 of 5 barcode size, color, image, etc
  • Mature Interleaved 2 of 5 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 Interleaved 2 of 5 Valid Characters in VB.NET
There are 2 elements that influence Interleaved 2 of 5 input characters: (a), Interleaved 2 of 5 valid character set; (b), Interleaved 2 of 5 valid length.

(a)Interleaved 2 of 5 Valid Character Set

Interleaved 2 of 5 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.INTERLEAVED2OF5
barcode.Code = "01234567890"
barcode.drawBarcode2ImageFile("C://i_25.gif")

(b)Interleaved 2 of 5 Valid Length

Interleaved 2 of 5 barcode is fixed-length linear barcode. VB.NET Interleaved 2 of 5 barcode allows user to control Interleaved 2 of 5 barcode length using Code property.

barcode.Code = "9"; // Interleaved 2 of 5 in 1-digit length
barcode.Code = "98765"; // Interleaved 2 of 5 in 5-digit length
barcode.Code = "9876543210"; // Interleaved 2 of 5 in 10-digit length
barcode.Code = "9876543210123456"; // Interleaved 2 of 5 in 16-digit length





Quick Links