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

vbnetmsi = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to msi

vbnetmsi.Symbology = BusinessRefinery.Barcode.Symbology.msi

// set the unit of measure

vbnetmsi.BarcodeUnit = BusinessRefinery.Barcode.BarcodeUnit.PIXEL

// set the bar height

vbnetmsi.BarHeight = 50

// set the bar width

vbnetmsi.BarWidth = 2

Margin Setting

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

Sample Code:
// construct a linear barcode object

Dim vbnetmsi As BusinessRefinery.Barcode.Linear

vbnetmsi = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to msi

vbnetmsi.Symbology = BusinessRefinery.Barcode.Symbology.msi

// set the width of margins around the symbol

vbnetmsi.TopMargin=10

vbnetmsi.BottomMargin=10

vbnetmsi.LeftMargin=10

vbnetmsi.RightMargin=10
MSI Plessy VB .NET Generator - Quick Generating in VB.NET

1. How to add MSI Plessy VB .NET Generator to your VB.NET IDEs


Sample Code:
// construct a linear barcode object

Dim vbnetmsi As BusinessRefinery.Barcode.Linear

vbnetmsi = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to msi

vbnetmsi.Symbology = BusinessRefinery.Barcode.Symbology.msi

// set msi code text to encode

vbnetmsi.Code = "01234567891"

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

vbnetmsi.drawBarcode2ImageFile("msi-in-vbnet.png")




Quick Links