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

vbnetitf14 = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to itf14

vbnetitf14.Symbology = BusinessRefinery.Barcode.Symbology.itf14

// set the unit of measure

vbnetitf14.BarcodeUnit = BusinessRefinery.Barcode.BarcodeUnit.PIXEL

// set the bar height

vbnetitf14.BarHeight = 50

// set the bar width

vbnetitf14.BarWidth = 2

Margin Setting

Margins are add to enhance the readability of the barcode using ITF-14 VB .NET Generator.

Sample Code:
// construct a linear barcode object

Dim vbnetitf14 As BusinessRefinery.Barcode.Linear

vbnetitf14 = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to itf14

vbnetitf14.Symbology = BusinessRefinery.Barcode.Symbology.itf14

// set the width of margins around the symbol

vbnetitf14.TopMargin=10

vbnetitf14.BottomMargin=10

vbnetitf14.LeftMargin=10

vbnetitf14.RightMargin=10
ITF-14 VB .NET Generator - Quick Generating in VB.NET

1. How to add ITF-14 VB .NET Generator to your VB.NET IDEs


Sample Code:
// construct a linear barcode object

Dim vbnetitf14 As BusinessRefinery.Barcode.Linear

vbnetitf14 = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to itf14

vbnetitf14.Symbology = BusinessRefinery.Barcode.Symbology.itf14

// set itf14 code text to encode

vbnetitf14.Code = "01234567891"

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

vbnetitf14.drawBarcode2ImageFile("itf14-in-vbnet.png")




Quick Links