VB.NET Code 11 generator is one part of VB.NET barcode generator, which is a mature, easy-to-use barcode generating component for making 20+ linear and 2D barcodes in VB.NET projects.
VB.NET Code 11 generator can be easily and completely developed in Visual Basic.NET development environment. .NET 2.0 and later version are supported. Multiple barcode image and other option over every aspect of Code 11 barcode properties are provides for you.
Code 11 Information
- High-density, discrete, numeric-only linear barcode symbology with varible length
- History: developed 1982 by Intermec as an enhancement of Code 39
- Aka: USD-8
- Using Field: identify telecommunications equipment
- Encode Charater set:
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
- - (Dash)
Development Environment Support
- Windows Forms Application (design-time and runtime support)
- .NET Web Forms Web site (design-time and runtime support)
- Console Application (runtime support)
- .NET Web Service Project (runtime support)
- Crystal Reports for .NET Application (runtime support)
- Windows Service (runtime support)
- Class Library (runtime support)
Generate Code 11 in VB.NET class:
Dim barcode As
Avapose.Barcode.Encoder.ClassLibrary.BarCode =
New Avapose.Barcode.Encoder.ClassLibrary.BarCode
barcode.Symbology = Avapose.Barcode.Encoder.ClassLibrary.Symbology.Code11
// Code 11 valid character set
barcode.Data = "5103"
// Code 11 basic settings, including sizing, color, etc
barcode.UOM = Avapose.Barcode.Encoder.ClassLibrary.UnitOfMeasure.Pixel
barcode.X = 6
barcode.Y = 6
barcode.BarcodeImageWidth = 175
barcode.BarcodeImageHeight = 50
barcode.Angle = Avapose.Barcode.Encoder.ClassLibrary.Angle.Degree0
barcode.AutoResize =
True
// Code 11 text releted seeting, including color, font, margin
barcode.ShowText = True
barcode.TextColor = Color.Red
// Code 11 barcode image format set
barcode.draw(".../code11.png")
