Planet VB .NET Generator - Overview
  • Easily integrate with Visual Basic .NET IDEs
  • Strong-named and time-stamped
  • Compatible with Visual Basic Class library and Visual Basic Console Application
  • Generate Planet in VB.NET Reporting Service 2005 & 2008
  • POSTNET (Postal Numeric Encoding Technique) is supported
  • Allow the module to be resized
  • Add flexible margins surrounding symbol to increase symbol readability
Planet VB .NET Generator - Planet Size Setting Functionality

Module bar setting

The basic size-setting item is the size setting of module bar. There are three factors that related to the size of module - the unit of measure, the bar height, and the bar width.

Sample Code:
// construct a linear barcode object
Dim vbnetplanet As BusinessRefinery.Barcode.Linear

vbnetplanet = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to planet

vbnetplanet.Symbology = BusinessRefinery.Barcode.Symbology.planet

// set the unit of measure

vbnetplanet.BarcodeUnit = BusinessRefinery.Barcode.BarcodeUnit.PIXEL

// set the bar height

vbnetplanet.BarHeight = 50

// set the bar width

vbnetplanet.BarWidth = 2

Margin Setting

Margins are add to enhance the readability of the barcode using Planet VB .NET Generator.

Sample Code:
// construct a linear barcode object

Dim vbnetplanet As BusinessRefinery.Barcode.Linear

vbnetplanet = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to planet

vbnetplanet.Symbology = BusinessRefinery.Barcode.Symbology.planet

// set the width of margins around the symbol

vbnetplanet.TopMargin=10

vbnetplanet.BottomMargin=10

vbnetplanet.LeftMargin=10

vbnetplanet.RightMargin=10
Planet VB .NET Generator - Quick Generating in VB.NET

1. How to add Planet VB .NET Generator to your VB.NET IDEs


Sample Code:
// construct a linear barcode object

Dim vbnetplanet As BusinessRefinery.Barcode.Linear

vbnetplanet = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to planet

vbnetplanet.Symbology = BusinessRefinery.Barcode.Symbology.planet

// set planet code text to encode

vbnetplanet.Code = "01234567891"

//draw barcode and save into image file in png format

vbnetplanet.drawBarcode2ImageFile("planet-in-vbnet.png")




Quick Links