• Create quality Codabar barcode in .NET project with Visual Basic
  • Easy to integrate the VB.NET Codabar barcode component with .NET project templates
  • Compatible with .NET Framework 2.0, 3.0, 3.5, 4.0
  • Adjustable barcode size support with the VB.NET Codabar barcode encoder
  • Codabar bar width and height can be set with Visual Basic in .NET project templates
  • Wide-to-narrow bar ratio support in the range of 2:1 to 3:1
  • Customizable X, Y dimension support for Codabar with Visual Basic .NET
  • Codabar barcode margins can be resized with VB.NET as required barcode field in .NET
Quick Jump:
Integration of VB.NET Codabar Generator
  1. Download the VB.NET barcode encoding SDK from BusinessRefinery.com
  2. Unzip the VB.NET barcode encoding SDK package
  3. Add BusinessRefinery.Barcode.Win.dll or BusinessRefinery.Barcode.Web.dll to your .NET project reference
  4. Import .NET Barcode Encoder .NET Windows Control Library to Visual Studio Toolbox
  • Right click your Visual Studio Toolbox, and select the Choose Items...
  • In "Choose Toolbox Items" form, click "Browse..."
  • Choose BusinessRefinery.Barcode.Win.dll or BusinessRefinery.Barcode.Web.dll
Configuring Codabar size with Visual Basic in .NET project templates
VB.NET Codabar barcode encoder is an extremely powerful barcode drawing components, which is capable of creating flexible size barcode symbols in your .NET projects. Various barcode size properties can be set via Visual Basic, such as bar width, bar height, X and Y dimension, Wide-to-narrow bar ratio, barcode margins. The following VB.NET code sample display how to configure these barcode size properties with Visual Basic.


(a) Set Codabar size with VB.NET in .NET Class library


Dim barcode As BusinessRefinery.Barcode.Linear
barcode = New BusinessRefinery.Barcode.Linear()
barcode.Type = BarcodeType.Codabar
barcode.Data = "0123456789"
barcode.X = 2
barcode.Y = 90
barcode.drawBarcode("vbnet-codabar.png")


(b) Adjust Codabar size in Windows Forms project template


Dim barcode As BusinessRefinery.Barcode.Linear
barcode = New BusinessRefinery.Barcode.Linear()
barcode.Type = BarcodeType.Codabar
barcode.Data = "0123456789"
barcode.X = 2
barcode.Y = 90
barcode.drawBarcode("vbnet-codabar.png")


(c) Set Codabar size with VB.NET in Console Application project


Dim barcode As BusinessRefinery.Barcode.Linear
barcode = New BusinessRefinery.Barcode.Linear()
barcode.Type = BarcodeType.Codabar
barcode.Data = "0123456789"
barcode.X = 2
barcode.Y = 90
barcode.drawBarcode("vbnet-codabar.png")


(d) Configure Codabar size with VB.NET in Crystal Reports project


Dim barcode As BusinessRefinery.Barcode.Linear
barcode = New BusinessRefinery.Barcode.Linear()
Dim barcode As BusinessRefinery.Barcode.Linear
barcode = New BusinessRefinery.Barcode.Linear()
barcode.Type = BarcodeType.Codabar
barcode.Data = "0123456789"
barcode.X = 2
barcode.Y = 90
barcode.drawBarcode("vbnet-codabar.png")





Quick Links