Code 93 for .NET WinForms
Code 93 Winforms Generator - Overview
  • Code 93 bar code image generator for Winforms in .NET project
  • A clear structured and strongly named DLLs
  • Compatible with Window Control Library and Web Control Library in .NET
  • Support Windows application, console application, and class library
  • Compute check digits for Code 93 automatically
  • Increase the white spaces around the symbol
  • Supported by .NET 2.0 and later versions
Code 93 - Brief Introduction

The installation of Code 93 Winforms Generator into Winforms is straightforward. Dynamic Code 93 could be generated easily using Code 93 Winforms Generator. Code 93 Winforms Generator could be used to draw Code 93 in Windows applications. At the same time, it could be add to Winforms to stream Code 93 barcode image via Winforms.
Code 93 Winforms Generator - Generating Sample Code

1. How to generate Code 93 barcodes with Visual C# .NET


using BusinessRefinery.Barcode;

// construct a linear barcode object

Linear winformscode93 = new Linear();

// set linear barcode symbology to be CODE93

winformscode93.Symbology = Symbology.CODE93;

// set UPC-A code text to encode

winformscode93.Code = "CODE 93";

//draw barcode and save into image file in gif format

winformscode93.drawBarcode2ImageFile("code93-in-winformscsharp.gif");


2. How to generate Code 93 using Visual Basic in .NET


// construct a linear barcode object

Dim winformscode93 As BusinessRefinery.Barcode.Linear

winformscode93 = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to be CODE93

winformscode93.Symbology = BusinessRefinery.Barcode.Symbology.CODE93

// set UPC-A code text to encode

winformscode93.Code = "CODE 93"

//draw barcode and save into image file in gif format

winformscode93.drawBarcode2ImageFile("code93-in-winformsvb.gif")




Quick Links