Overviews
- Code 93 generation in .NET windows applications
- Easy-to-use & integrate controls completely written in managed C#
- Generate Code 93 and other linear & 2D barcodes in C# class, such as UPC-E , EAN 8 , Codabar , Code 11 , Code 39 , Leitcode , Interleaved 2 of 5 , ITF 14 , and QR Code
- Easy to enable tilde character to encode specific ASCII characters
- Show human readable text with customizable Font, Color, and Margin Settings;
- Draw Code 93 using C# and VB.NET
- Generate Code 93 in stream object, in graphics object, and image formats
- Print and save Code 93 as gif, jpeg, png, tiff, and bitmap files
Code 93 Information
Code 93, also named as ANSI/AIM Code 93, USS Code 93, USS 93, Code 9/3, USS-93, Code 93 Extended.
how to print barcode labels in asp net c#,
barcode scanning in c#.net,
creating barcode in vb.net,
how to generate barcode in crystal report c#,
dynamically generate barcode in asp.net c#,
how to create barcode image in excel
Barcode |
Character Set |
Sample Image |
Code 93 |
- Numeric Character: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
- Uppercase letters: A - Z
- Lowercase letters: a - z
- - (Dash), . (Point),$ (Dollar), / (Slash), + (Plus)% (Percentage), (Space)
|
|
How to Generate Code 93 Barcodes using WinForms Barcode Generator
Setup Process
- Download KeepAutomation WinForms Barcode Generator from the following link:
KeepAutomation WinForms Barcode Generator (Evaluation Version)
- Unzip the package net_barcode_trial.zip in the project folder
Drag & Drop WinForms Code 93 Generator
- Open your project by .NET IDE
- Add KeepAutomation.Barcode.Windows.dll to project reference
- Add KeepAutomation.Barcode.Windows.dll to the Toolbox
- Drag and drop KeepAutomation.Barcode.Windows.dll (named BarcodeControl)
Quick Generating Code 93 for WinForms Using C#.NET, VB.NET
WinForms Barcode Generator for Code 93 set the default value of properties properly, which implement quick Code 93 generation in Windows Applications. You can add the following C#.NET or VB.NET Code to project.
Sample Code in C#.NET |
Sample Code in VB.NET |
using KeepAutomation.Barcode.Bean;
BarCode code 93 = new BarCode();
code 93.Symbology = Symbology.code 93;
code 93.CodeToEncode = "1234567";
code 93.generateBarcodeToImageFile("C://code 93-csharp.gif");
|
Dim code 93 As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
code 93.Symbology = KeepAutomation.Barcode.Symbology.code 93
code 93.CodeToEncode = "1234567"
code 93.generateBarcodeToImageFile("C:/code 93-vb.gif")
|
For advanced generation tutorial, see C#.NET Developer Guide |
For advanced generation tutorial, see VB.NET Developer Guide |