VB.NET Code 93 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 93 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 93 barcode properties are provides for you.
Code 93 Specifications
- Continuous alphanumeric linear barcode symbology with varible length
- History: developed 1982 by Intermec as an enhancement of Code 39
- Aka: USS-93
- Using Field: photofinishing, warehouse sorting industries, numbering airline tickets
- Encode Charater set:
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
- uppercase letters (A through Z)
- - (Dash), . (Point), $ (Dollar), / (Slash), + (Plus), % (Percentage), (Space)
Development Environment
- 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 93 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.Code93
// Code 93 valid character set
barcode.Data = "5105BCD"
// Code 93 wide/narrow ratio, 2.0-3.0 inclusive
barcode.N = 3
// Code 93 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 93 text releted seeting, including color, font, margin
barcode.ShowText = True
barcode.TextColor = Color.Chocolate
// Code 93 barcode image format set
barcode.draw(".../code93.png")
