UPC-E for .NET WinForms
UPC-E Winforms Generator - Overview
  • UPC-E 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 UPC-E automatically
  • Generate UPC-A for Winforms as well
  • Increase the white spaces around the symbol
  • Supported by .NET 2.0 and later versions
UPC-E - Brief Introduction

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

1. How to generate UPC-E barcodes with Visual C# .NET


using BusinessRefinery.Barcode;

// construct a linear barcode object

Linear winformsupce = new Linear();

// set linear barcode symbology to be upce

winformsupce.Symbology = Symbology.upce;

// set UPC-A code text to encode, see UPC-E data encoding

winformsupce.Code = "123456";

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

winformsupce.drawBarcode2ImageFile("upce-in-winformscsharp.gif");


2. How to generate UPC-E using Visual Basic in .NET


// construct a linear barcode object

Dim winformsupce As BusinessRefinery.Barcode.Linear

winformsupce = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to be upce

winformsupce.Symbology = BusinessRefinery.Barcode.Symbology.upce

// set UPC-A code text to encode

winformsupce.Code = "123456"

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

winformsupce.drawBarcode2ImageFile("upce-in-winformsvb.gif")




Quick Links