- Totally compatible with Microsoft Visual Studio .NET applications
- Strong-named assemblies written and designed in managed C#.NET code
- Includes Code 93 ASP.NET SDK DLL and Code 93 .NET WinForms DLL
- Available to create 1D and 2D barcodes in Visual Studio for .NET applications
- Generated high-quality Code 93 image may be printed by all printers
- Easy to add Code 93 barcode images using C# or VB.NET programming
- Customizable Code 93 rotation degree, data text, size, image resolution, etc
Code 93 Barcode Generator SDK Library is a .NET barcode generator component, allowing developers to deploy the dll into Visual Studio for Code 93 generation. This barcode control is designed for creating barcodes in ASP.NET, .NET Windows Forms application, Crystal Reports for .NET, Console Application, etc. Furthermore, it is available to print and adjust Code 93 barcode images using C# or VB.NET class.
Code 93 Overview in .NET Generator
Code 93 is designed to provide a higher density and data security enhancement to Code 39. And comparing with Code 39, it is a continuous barcode symbology and it can encode more characters. Every Code 39 barcode symbol includes two check characters. Besides, this barcode type is used primarily to encode supplementary delivery information by Canada Post.
Code 93 Barcode Data in .NET Control
- Numeric digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
- Alphabets: upper-case letters A-Z
- Alphabets: lower-case letters a-z
- Special characters: dash (-), dollar ($), percentage (%), space, point (.), slash (/), plus (+)
2: Build Click Event in Winforms in C#.NET. ....
more>
Code 93 Generation in .NET Component
First of all, download
KA.Barcode for .NET Suite trial package for free and unzip.
How to Drag Code 93 Barcode SDK to .NET Project
1.
Activate the toolbox panel, right-click "Components" -> "Choose Items...", and click "Browse..."
2.
Locate and select "KeepAutomation.Barcode.Web.dll" / "KeepAutomation.Barcode.Windows.dll"
3.
Drag "BarCodeControl" to web or windows form to print a barcode image (default barcode type is Code 128)
4.
Modify barcode type into "Code93" and revise properties in the "Properties", then click the generated barcode
How to Generate Code 93 in C# or VB.NET Class
To help users implement Code 93 barcode images for ASP.NET web application and Windows Form application, KeepAutomation provide the following C# or VB.NET sample code.
using KeepAutomation.Barcode.Bean;
BarCode code93= new BarCode();
code93.Symbology= KeepAutomation.Barcode.Symbology.Code93;
code93.CodeToEncode = "9393";
code93. Y=60;
code93.generateBarcodeToImageFile("C://code93-csharp.png");
Dim code93 As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
code93.Symbology= KeepAutomation.Barcode.Symbology.Code93
code93.CodeToEncode = "9393"
code93. Y=60
code93.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif()
code93.generateBarcodeToImageFile("C://code93-vb-net.gif")
How to Generate QR Code Image in VB.NET Projects. VB.NET source code to generate, print QR Code in different image formats using .NET Barcode...
QRCode". How to Generate QR Code in .NET Using C#.NET, VB.NET. Switch to the Visual Studio Solution Explorer window, and add...
more>
How to Create Code 93 in Microsoft IIS with URL
1.
Download and unzip trial package, and copy "barcode" folder to IIS
2.
Create a new virtual directory and name it "barcode" in Microsoft IIS
3.
Restart the IIS, and navigate to "http://localhost/barcode/barcode.aspx?code-to-encode=9393&symbology=6"
4.
Now, Code 93 is produced and you can revise the barcode image properties in the url with the http parameters
5.
Embed <img src="http://localhost/barcode/barcode.aspx?code-to-encode=9393&symbology=6/"> into your web pages to create the generated Code 93 barcodes in html or aspx pages