Our Customers
Contact Us Email: support@barcodelib.com
Home > .NET WinForms Barcode > Windows Forms Barcode Generation Guide > .NET WinForms Code 11 Barcode Generation Guide
Download Barcode for .NET WinForms Trial

.NET WinForms Code 11 Barcode Generator DLL

.NET WinForms Code 11 Barcode Generation Using Visual Studio C# & VB Classes
  • Comply with latest .NET WinForms Code 11 barcode creation specification
  • Completely compatible with .NET Framework 2.0, 3.0 & 4.0 applications
  • Simply generate Code 11 barcode image in .NET Windows Forms applications
  • Generate Code 11 barcode image using C# & VB.NET in WinForms applications
  • Support multiple .NET WinForms linear and 2d barcode images generation
  • Professional Code 11 Barcode Generator DLL for .NET WinForms applications
.NET Windows Forms Code 11 Barcode Features
Code 11, also known as USD-8, is a barcode symbology developed by Intermec in 1977. It encodes the numbers 0-9, the dash symbol (-) and the start/stop characters. One or more modulo-11 check digit(s) can be added.
Code 11 symbology is designed and developed for telecommunications application.
.NET WinForms Code 11 Barcode Image Generation Through Control
  1. Download and unzip the free trial package of .NET WinForms Barcode Generator Library.
  2. Add reference (BarcodeLib.Barcode.WinForms.dll) to your Visual Studio Toolbox.
    • Right click your Visual Studio Toolbox, select menu Choose Items...
    • In Choose Toolbox Items form, click button Browse..., and select BarcodeLib.Barcode.WinForms.dll.
    • Four items (LinearWinForm, DataMatrixWinForm, PDF417WinForm and QRCodeWinForm) are added.
  3. Drag LinearWinForm to .NET Windows Forms project in your Visual Studio.
  4. Choose Code 11 barcode under Type item of the Properties window.
  5. Reset other properties of your Code 11 barcode image through the Properties window.
.NET WinForms Code 11 Barcode Generation Using C# & VB Class

How to Generate .NET WinForms Code 11 Barcode Using C# & VB Class

  1. Add reference (BarcodeLib.Barcode.WinForms.dll) to your VS.NET WinForms project.
  2. Create Code 11 barcode image in .NET Windows Forms by compiling sample codes as below.
How to generate Code 11 barcode image in .NET WinForms using C# sample codes
     BarcodeLib.Barcode.Linear code11 = new BarcodeLib.Barcode.Linear();
code11.Type = BarcodeType.CODE11;
code11.Data = "78541235-751";

code11.UOM = UnitOfMeasure.CM;
code11.BarWidth = 0.05f;
code11.BarHeight = 2.0f;
code11.BarColor = Color.Chocolate;
code11.ImageFormat = System.Drawing.Imaging.ImageFormat.Png;

// Save Code11 barcode image into your system;
code11.drawBarcode("c:/code11.png");
How to generate Code 11 barcode image in .NET WinForms using VB sample codes
     Dim code11 As New BarcodeLib.Barcode.Linear()
code11.Type = BarcodeType.CODE11
code11.Data = "78541235-751"

code11.UOM = UnitOfMeasure.CM
code11.BarWidth = 0.05F
code11.BarHeight = 2F
code11.BarColor = Color.Chocolate
code11.ImageFormat = System.Drawing.Imaging.ImageFormat.Png

' Save Code11 barcode image into your system;
code11.drawBarcode("c:/code11.png")
Supported .NET WinForms Barcode Symbologies
WinForms 1D Barcodes:
WinForms 2D Barcodes:
2D barcodes supported: Data Matrix, PDF 417, QR-Code.



See Also: Related Barcoding Tutorials

.NET Windows Forms Visual C# & Visual Basic Barcoding Tutorials