KA.Barcode for .NET Suite
How to Generate Code 93 in .NET Application
How to create & print linear Code 93 barcode images in C#, VB.NET, ASP.NET web, and Windows Forms projects
  • 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.

barcode generator for excel 2016, vb.net 2008 barcode generator, print barcode in crystal report c#, barcode scanner program visual basic, print barcode printer c#, c# barcode scanner

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.

add barcode rdlc report, qr code in crystal reports c#, rdlc barcode font, crystal reports barcode font formula, barcode reader in asp.net, print barcode in asp.net c#
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 (+)
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. 1.
    Activate the toolbox panel, right-click "Components" -> "Choose Items...", and click "Browse..."
  2. 2.
    Locate and select "KeepAutomation.Barcode.Web.dll" / "KeepAutomation.Barcode.Windows.dll"
  3. 3.
    Drag "BarCodeControl" to web or windows form to print a barcode image (default barcode type is Code 128)
  4. 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 Create Code 93 in Microsoft IIS with URL
  1. 1.
    Download and unzip trial package, and copy "barcode" folder to IIS
  2. 2.
    Create a new virtual directory and name it "barcode" in Microsoft IIS
  3. 3.
    Restart the IIS, and navigate to "http://localhost/barcode/barcode.aspx?code-to-encode=9393&symbology=6"
  4. 4.
    Now, Code 93 is produced and you can revise the barcode image properties in the url with the http parameters
  5. 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