Our Customers
Contact Us Email: support@barcodelib.com
Home > .NET Barcode > VB.NET Barcode Generation Guide > VB.NET Code 11 Barcode Generation Tutorial
Download Barcode for .NET Suite Trial

VB.NET Code 11 Barcode Generator Library SDK

VB Code 11 Barcode Generation in ASP.NET and .NET WinForms Applications
  • Make proficient linear and 2D barcode images in VB ASP.NET applications
  • Make high-quality linear and 2D barcode images in VB .NET WinForms applications
  • Use advanced VB.NET Barcode Generator Library to generate Code 11 barcode image
  • Generate Code 11 barcode image and save it to multiple file formats quickly
  • Generate customized Code 11 barcode image based on your own needs
  • Provide different kinds of royalty-free and continuous VB.NET developer licenses
VB.NET Code 11 Barcode Image Introduction
Code 11 is used primarily for labeling telecommunications equipment. Its character set includes the digits 0 through 9, a dash (-), and a start/stop code. Each character is encoded with three bars and two spaces. Of these five elements, there may be two wide and three narrow, or one wide and four narrow. Wide elements represent a binary 1 while narrow elements represent a binary 0. Two check digits, named "C" and "K", are used.
Generate VB.NET Code 11 Barcode Image in Web Form Applications
Method of easily generating VB.NET Code 11 barcode image in Web Form applications.
  1. Add VB.NET Code 11 barcode generation reference (BarcodeLib.Barcode.ASP.NET.dll) to the Toolbox in your Visual Studio.
  2. Copy components "linear.aspx" and "linear.aspx.cs" to your VB ASP.NET project folder.
  3. In the aspx page, drag and drop LinearASPNET under the Toolbox to it.
  4. Generate Code 11 barcode image by changing settings in the Properties window or writing the demo codes.
     Me.LinearASPNET1.Data = "15472894-751"
Me.LinearASPNET1.Type = BarcodeLib.Barcode.BarcodeType.CODE11
Me.LinearASPNET1.BarWidth = 2
Me.LinearASPNET1.BarHeight = 80
5. Start your project to view the generated Code 11 barcode image.
Generate VB.NET Code 11 Barcode Image in WinForms Applications
Method of easily generating VB.NET Code 11 barcode image in .NET WinForms applications.
  1. Create a VB.NET WinForms project in your Visual Studio.
  2. Drag and drop PixtureBox and Button to Form1.
  3. Add reference (BarcodeLib.Barcode.WinForms.dll) to your VB.NET WinForms project.
  4. Generate VB Code 11 barcode image in .NET Windows Forms using sample codes.
     Dim barcode As New Linear()
barcode.Type = BarcodeType.CODE11
barcode.Data = "15472894-751"

Dim CODE11 As Bitmap = barcode.drawBarcode()

Me.PictureBox1.Image = CODE11
5. Run your program and click the button to see the generated Code 11 barcode image.
Linear and 2D Barcode Symbologies for VB.NET
VB.NET Linear Barcodes:
VB.NET Matrix Barcodes:
2D barcodes offered: Data Matrix, PDF417, QR Code.