• Easy to integrate Identcode barcode generation component into your VB.NET Programs
  • Completely written in VB.NET for .NET 2.0/3.0/4.0
  • Support numeric data only to be encoded into Identcode
  • Compatible with Identcode barcode specification
  • Simple to set Identcode barcode data length into 11 digits only
  • Support to automatically add a checksum digit for Identcode barcodes
  • User-defined options for customize Identcode barcode size, image, color, etc
  • Professional Identcode 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 Identcode Valid Characters in VB.NET
There are 2 elements that influence Identcode input characters: (a), Identcode valid character set; (b), Identcode valid length.

(a)Identcode Valid Character Set

Identcode 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.IDENTCODE
barcode.Code = "01234567890"
barcode.drawBarcode2ImageFile("C://identcode.gif")

(b)Identcode Valid Length

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

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.IDENTCODE
barcode.Code = "98765432101"
barcode.drawBarcode2ImageFile("C://identcode.gif")





Quick Links