- 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
Identcode Winforms Generator - Overview
- Identcode 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 Identcode automatically
- Increase the white spaces around the symbol
- Supported by .NET 2.0 and later versions
Identcode - Brief Introduction
The installation of Identcode Winforms Generator into Winforms is straightforward. Dynamic Identcode could be generated easily using Identcode Winforms Generator. Identcode Winforms Generator could be used to draw Identcode in Windows applications. At the same time, it could be add to Winforms to stream Identcode barcode image via Winforms.
Identcode Winforms Generator - Generating Sample Code
1. How to generate Identcode barcodes with Visual C# .NET
using BusinessRefinery.Barcode;
// construct a linear barcode object
Linear winformsidentcode = new Linear();
// set linear barcode symbology to be identcode
winformsidentcode.Symbology = Symbology.identcode;
// set UPC-A code text to encode
winformsidentcode.Code = "Identcode";
//draw barcode and save into image file in gif format
winformsidentcode.drawBarcode2ImageFile("identcode-in-winformscsharp.gif");
2. How to generate Identcode using Visual Basic in .NET
// construct a linear barcode object
Dim winformsidentcode As BusinessRefinery.Barcode.Linear
winformsidentcode = New BusinessRefinery.Barcode.Linear()
// set linear barcode symbology to be identcode
winformsidentcode.Symbology = BusinessRefinery.Barcode.Symbology.identcode
// set UPC-A code text to encode
winformsidentcode.Code = "Identcode"
//draw barcode and save into image file in gif format
winformsidentcode.drawBarcode2ImageFile("identcode-in-winformsvb.gif")