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

vbnetcode93 = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to CODE93

vbnetcode93.Symbology = BusinessRefinery.Barcode.Symbology.CODE93

// set the unit of measure

vbnetcode93.BarcodeUnit = BusinessRefinery.Barcode.BarcodeUnit.PIXEL

// set the bar height

vbnetcode93.BarHeight = 50

// set the bar width

vbnetcode93.BarWidth = 2

Margin Setting

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

Sample Code:
// construct a linear barcode object

Dim vbnetcode93 As BusinessRefinery.Barcode.Linear

vbnetcode93 = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to CODE93

vbnetcode93.Symbology = BusinessRefinery.Barcode.Symbology.CODE93

// set the width of margins around the symbol

vbnetcode93.TopMargin=10

vbnetcode93.BottomMargin=10

vbnetcode93.LeftMargin=10

vbnetcode93.RightMargin=10
Code 93 VB .NET Generator - Quick Generating in VB.NET

1. How to add Code 93 VB .NET Generator to your VB.NET IDEs


Sample Code:
// construct a linear barcode object

Dim vbnetcode93 As BusinessRefinery.Barcode.Linear

vbnetcode93 = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to CODE93

vbnetcode93.Symbology = BusinessRefinery.Barcode.Symbology.CODE93

// set CODE93 code text to encode

vbnetcode93.Code = "01234567891"

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

vbnetcode93.drawBarcode2ImageFile("code93-in-vbnet.png")




Quick Links