Identcode 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 Identcode in VB.NET Reporting Service 2005 & 2008
  • Create Identcode 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
Identcode VB .NET Generator - Identcode 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 vbnetidentcode As BusinessRefinery.Barcode.Linear

vbnetidentcode = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to identcode

vbnetidentcode.Symbology = BusinessRefinery.Barcode.Symbology.identcode

// set the unit of measure

vbnetidentcode.BarcodeUnit = BusinessRefinery.Barcode.BarcodeUnit.PIXEL

// set the bar height

vbnetidentcode.BarHeight = 50

// set the bar width

vbnetidentcode.BarWidth = 2

Margin Setting

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

Sample Code:

// construct a linear barcode object

Dim vbnetidentcode As BusinessRefinery.Barcode.Linear

vbnetidentcode = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to identcode

vbnetidentcode.Symbology = BusinessRefinery.Barcode.Symbology.identcode

// set the width of margins around the symbol

vbnetidentcode.TopMargin=10

vbnetidentcode.BottomMargin=10

vbnetidentcode.LeftMargin=10

vbnetidentcode.RightMargin=10
Identcode VB .NET Generator - Quick Generating in VB.NET

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


Sample Code:
// construct a linear barcode object

Dim vbnetidentcode As BusinessRefinery.Barcode.Linear

vbnetidentcode = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to identcode

vbnetidentcode.Symbology = BusinessRefinery.Barcode.Symbology.identcode

// set identcode code text to encode

vbnetidentcode.Code = "01234567891"

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

vbnetidentcode.drawBarcode2ImageFile("identcode-in-vbnet.png")




Quick Links