- Barcode Products
-
Guide
- Generate barcodes in ASP.NET
- Generate barcodes in .NET WinForms
- Generate barcodes in Visual C#.NET
- Generate barcodes in Visual Basic.NET
- Generate barcodes in Java
- Generate barcodes in Crystal Reports
- Generate barcodes in Reporting Service
- Generate barcodes in RDLC Report
- Generate Barcodes in BIRT Report
- Integration
- Knowledge
- Order Now
- About Us
Codabar Winforms Generator - Overview
- Codabar 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 Codabar automatically
- Increase the white spaces around the symbol
- Supported by .NET 2.0 and later versions
Codabar - Brief Introduction
The installation of Codabar Winforms Generator into Winforms is straightforward. Dynamic Codabar could be generated easily using Codabar Winforms Generator. Codabar Winforms Generator could be used to draw Codabar in Windows applications. At the same time, it could be add to Winforms to stream Codabar barcode image via Winforms.
Codabar Winforms Generator - Generating Sample Code
1. How to generate Codabar barcodes with Visual C# .NET
using BusinessRefinery.Barcode;
// construct a linear barcode object
Linear winformscodabar = new Linear();
// set linear barcode symbology to be codabar
winformscodabar.Symbology = Symbology.codabar;
// set UPC-A code text to encode
winformscodabar.Code = "123456";
//draw barcode and save into image file in gif format
winformscodabar.drawBarcode2ImageFile("codabar-in-winformscsharp.gif");
2. How to generate Codabar using Visual Basic in .NET
// construct a linear barcode object
Dim winformscodabar As BusinessRefinery.Barcode.Linear
winformscodabar = New BusinessRefinery.Barcode.Linear()
// set linear barcode symbology to be codabar
winformscodabar.Symbology = BusinessRefinery.Barcode.Symbology.codabar
// set UPC-A code text to encode
winformscodabar.Code = "123456"
//draw barcode and save into image file in gif format
winformscodabar.drawBarcode2ImageFile("codabar-in-winformsvb.gif")