KA.Barcode for .NET Suite
Guide for Encoding Alphanumeric Data in Code 93
Complete C#.NET source code to generate, print Code 93 images using Barcode Generator for .NET Control

C# barcode generator: how to encode, create, print Code 93 bar code data in asp.net project, windows system



Code 93 C# Data Encoding- Overview

For more details about Code 93 C#.NET Generation, please refer to:

When generating a Code 93 image, you need to make clear two things first:

generate barcode c# asp.net, c# generate upc barcode, crystal reports data matrix, how to add barcode in crystal report in c#, c# code 39, how to make barcode in vb.net 2010

Q1: What kind of data can be encoded into a Code 93 image? Numeric or alphabetic?

A: Code 93 is an alphanumeric barcode symbology which encodes all ASCII characters, including numeric digits 0-9, upper-case letters A-Z, lower-case letters a-z, and special characters like - (dash), $ (dollar), : (colon), / (slash), . (point) and + (plus), etc.

barcode generator excel add in, how to print barcode labels in c# windows application, how to add barcode in crystal report in c#, asp.net barcode scanner, gs1 barcode parsing c#, how to generate multiple barcode in c# windows application

Q2: How many data digits can you input?

A: A Code 93 barcode is variable-length, which means you can simply any amount of data you want.

Code 93, also named as ANSI/AIM Code 93, USS Code 93, USS 93, Code 9/3, USS-93, Code 93 Extended.

Codabar Comments
Encodable Character Set 0-9, A-Z, a-z, - $ : / . + etc.
Data Length variable
Example: "Code-93"



Code 93 C# Data Encoding - Products

KeepAutomation.com provides a variety of best-quality C# Code 93 generators, with which you can easily input valid data and create scannable Code 93 barcodes with high-quality.

Code 93 Barcode Generator for ASP.NET - Generating & creating Code 93 in ASP.NET web applications

Code 93 Barcode Generator for WinForms - Creating Code 93 in .NET Windows forms

Code 93 Barcode Generator for Crystal Reports - Inserting and adding Code 93 barcodes in Crystal Reports

Code 93 Barcode Generator for Reporting Services - Printing and drawing Code 93 barcodes in SQL Reporting Services

Code 93 Barcode Generator for VB.NET - Creating Code 93 barcodes using VB.NET


Code 93 C# Data Encoding - Install

In order to input valid data to generate Code 93 image using C#, first you'll need to install C# Code 93 barcode generator in your .NET development environment. Please follow the simple steps below and you'll get it done in no time!

1. Download KeepAutomation Code 93 barcode generator for C# and unzip

2. Open Microsoft Visual Studio, choose "Add Reference" in "Project".

3. Browse to select KeepAutomation.Barcode.Windows.dll or KeepAutomation.Barcode.Web.dll and click OK.

4. Now you will see "KeepAutomation.Barcode.Web" or "KeepAutomation.Barcode.Windows" under your references

Now you have successfully added KeepAutomation Code 93 generator for C# into your reference, and you can begin input data into Code 93 barcode and create Code 93 image using C sharp.



Code 93 C# Data Encoding - Samples

How to Encode Code 93 with Valid Data Character

Valid data character set for Code 93: 0-9, A-Z, a-z, %, $, -, +, etc.

Here's a sample code on how to encode valid Code 93 data and create valid Code 93 image in C#.

BarCode code93= new BarCode();

code93.Symbology = Symbology.Code 93;

code93.X = 1;

code93.ImageFormat = ImageFormat.Png;

code93.CodeToEncode = "93Data";

code93.generateBarcodeToImageFile("C://csharp_code93_eg1.png");



How to Encode Code 93 with Valid Data Length

Code 93 is a variable-length code93.

Here's a sample code on how to encode Code 93 image with valid data length using C#.NET.

BarCode code93= new BarCode();

code93.Symbology = Symbology.Code 93;

code93.X = 2;

code93.ImageFormat = ImageFormat.Png;

code93.CodeToEncode = "9393";

code93.generateBarcodeToImageFile("C://csharp_code93_eg2.png");