• Create quality Code 11 barcode in .NET project with Visual Basic
  • Easy to integrate the VB.NET Code 11 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 Code 11 barcode encoder
  • Code 11 bar width and height can be set with Visual Basic in .NET project templates
  • Customizable X, Y dimension support for Code 11 with Visual Basic .NET
  • Code 11 barcode margins can be resized with VB.NET as required barcode field in .NET
Quick Jump:
Integration of VB.NET Code 11 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 menu Choose Items...
  • In "Choose Toolbox Items" form, click "Browse..."
  • Choose BusinessRefinery.Barcode.Win.dll or BusinessRefinery.Barcode.Web.dll
Configuring Code 11 size with Visual Basic in .NET project templates
VB.NET Code 11 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 Code 11 size with VB.NET in .NET Class library


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


(b) Adjust Code 11 size in Windows Forms project template


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


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


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


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


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




Quick Links