Intelligent Mail Barcode 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 Intelligent Mail Barcode in VB.NET Reporting Service 2005 & 2008
  • Create Intelligent Mail Barcode in VB.NET ASP.NET Web Server projects
  • Equipped with a complete symbol size setting solution
  • Allow the module to be resized
  • Add flexible margins surrounding symbol to increase symbol readability
Intelligent Mail Barcode VB .NET Generator - Intelligent Mail Barcode 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 vbnetonecode As BusinessRefinery.Barcode.Linear

vbnetonecode = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to onecode

vbnetonecode.Symbology = BusinessRefinery.Barcode.Symbology.onecode

// set the unit of measure

vbnetonecode.BarcodeUnit = BusinessRefinery.Barcode.BarcodeUnit.PIXEL

// set the bar height

vbnetonecode.BarHeight = 50

// set the bar width

vbnetonecode.BarWidth = 2

Margin Setting

Margins are add to enhance the readability of the barcode using Intelligent Mail Barcode VB .NET Generator.

Sample Code:
// construct a linear barcode object

Dim vbnetonecode As BusinessRefinery.Barcode.Linear

vbnetonecode = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to onecode

vbnetonecode.Symbology = BusinessRefinery.Barcode.Symbology.onecode

// set the width of margins around the symbol

vbnetonecode.TopMargin=10

vbnetonecode.BottomMargin=10

vbnetonecode.LeftMargin=10

vbnetonecode.RightMargin=10
Intelligent Mail Barcode VB .NET Generator - Quick Generating in VB.NET

1. How to add Intelligent Mail Barcode VB .NET Generator to your VB.NET IDEs


Sample Code:
// construct a linear barcode object

Dim vbnetonecode As BusinessRefinery.Barcode.Linear

vbnetonecode = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to onecode

vbnetonecode.Symbology = BusinessRefinery.Barcode.Symbology.onecode

// set onecode code text to encode

vbnetonecode.Code = "01234567891"

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

vbnetonecode.drawBarcode2ImageFile("onecode-in-vbnet.png")




Quick Links