• Easy to integrate Planet 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 Planet
  • Compatible with Planet barcode specification
  • Simple to set Planet barcode data length to 11, 13 digit only
  • Automatically add a check digit for Planet barcodes
  • User-defined options for customize Planet barcode size, image, color, etc
  • Professional Planet 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 Planet Valid Characters in VB.NET
There are 2 elements that influence Planet input characters: (a), Planet valid character set; (b), Planet valid length.

(a)Planet Valid Character Set

Planet 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.PLANET
barcode.Code = "98765432101"
barcode.drawBarcode2ImageFile("C://Planet.gif")

(b)Planet Valid Length

Planet barcode is fixed-length linear barcode, which supports to encode Planet barcode into 11-digit length and 13-digit length, excluding a checksum digit in the end. VB.NET Planet barcode allows user to control Planet barcode length using Code property.

Encoding Planet barcode into 11-digit length

barcode.Code = "12345678901"

Encoding Planet barcode into 13-digit length

barcode.Code = "1234567890123"





Quick Links