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

Code 93 Barcode Generation Guide in .NET WinForms

Generate .NET WinForms Code 93 Barcode Image Using Visual Studio C# & VB Class
  • Simple to generate Code 93 barcode image in .NET Framework 2.0 and above versions
  • Developed seamlessly, conforming to related Code 93 barcode generation specification
  • Generate satisfactory Code 93 barcode in C#.NET WinForms barcode generation applications
  • Generate customized Code 93 barcode in VB.NET WinForms barcode generation applications
  • Support 20+ linear and 2d barcodes generation in .NET Windows Forms applications
  • Provide E-mail support for .NET Code 93 Barcode Generator SDK with 24 hours
.NET Windows Forms Code 93 Barcode Recognition
Code 93 is designed to complement and improve upon Code 39. Code 93 is a continuous, variable-length symbology and produces denser code. It also encodes 47 characters compared to Code 39’s 43 characters. Code 93 is able to encode 26 upper case letters, 10 digits and 7 special characters.
Code 93 is applied to non-retail environments, U.S. government and military use as well as DoD applications (United States Department of Defense and Health Industry Bar Code Council (HIBCC)).
Create Code 93 Barcode Image in .NET Windows Forms with Control
Download and unzip the free trial package of .NET WinForms Barcode Generator SDK to generate Code 93 barcode image in .NET Windows Forms.
  1. Add reference (BarcodeLib.Barcode.WinForms.dll) to the Toolbox in your Visual Studio.
    • Right click your Visual Studio Toolbox and 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) can be visible.
  2. Drag LinearWinForm to your .NET Windows Forms project.
  3. Select Code 93 barcode under Type item of the Properties window.
  4. Modify other settings of your Code 93 barcode image through the Properties window if necessary.
  5. Run your .NET WinForms project to see the generated Code 93 barcode image.
Generate Code 93 Barcode in .NET WinForms Using C-sharp & VB Class
Two steps are required for generating Code 93 barcode image in .NET WinForms.
  1. Add reference (BarcodeLib.Barcode.WinForms.dll) to your VS.NET WinForms project.
  2. Compile codes for your Code 93 barcode image by referring to sample codes below.
C# sample codes for Code 93 barcode image generation in .NET WinForms
     BarcodeLib.Barcode.Linear code93 = new BarcodeLib.Barcode.Linear();
code93.Type = BarcodeType.CODE93;
code93.Data = "14225NHJSF%*";
code93.N = 3;

code93.UOM = UnitOfMeasure.INCH;
code93.BarWidth = 0.02f;
code93.BarHeight = 0.4f;

code93.ImageFormat = System.Drawing.Imaging.ImageFormat.Tiff;

// Save Code 93 barcode image into your system;
code93.drawBarcode("c:/code93.tiff");
VB sample codes for Code 93 barcode image generation in .NET WinForms
     Dim code93 As New BarcodeLib.Barcode.Linear()
code93.Type = BarcodeType.CODE93
code93.Data = "14225NHJSF%*"
code93.N = 3

code93.UOM = UnitOfMeasure.INCH
code93.BarWidth = 0.02F
code93.BarHeight = 0.4F

code93.ImageFormat = System.Drawing.Imaging.ImageFormat.Tiff

' Save Code 93 barcode image into your system;
code93.drawBarcode("c:/code93.tiff")
All .NET WinForms Barcode Symbologies
WinForms 1D Barcodes:
WinForms 2D Barcodes:
2D Barcodes: Data Matrix, PDF 417, QR-Code.



See Also: Related Barcoding Tutorials

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