UPC-E Barcode Creator for .NET Applications

- Powerful Winforms Barcode component for .NET Framework 2.0/3.0/4.0
- Support VB.NET, C#, Managed C++ and Borland Delphi for .NET
- Dynamic linear, postal & matrix barcode support
UPC-E Barcode Generation for .NET WinForms Applications
- Easily integrate dynamic UPC-E image into .NET Winforms application
- Create & generate UPC-E in .NET class & console applications
- Unzip as strong-named DLL with C# managed code
- Can be saved as graphic images without the use of font
- Can be used in any .NET languages such as C#, VB.NET, Managed C++, etc
- Flexible to show or hide human-readable text in UPC-E
- Flexible to change UPC-E rotation in 0, 90, 180 or 270 degree
- Royalty-free and perpetual developer license provided
.NET UPC-E Barcode Library SDK for Windows Forms is a strong-named .NET assembly that easily installs in Visual Studio as a control. Developers may use the drag-and-drop implementation or add- reference method to generate UPC-E in various .NET Framework environments. Rich barcode properties options are provided to generate specific UPC-E to meet your needs.
.NET UPC-E Generator for Winforms Development:
- Windows Forms Application (design-time and runtime support)
- Console Application (runtime support)
- Class Library (runtime support)
- Windows Service (runtime support)
UPC-E Barcode Creating DLL for .NET Projects - UPC-E Information
UPC-E is a zero-compressed version of UPC-A, which allows the use on smaller packages where a UPC-A couldn`t reasonably fit. UPC-E is 8 digits long including a leading character that is always 0, 6 digits for data area and a checksum character in the trailing place. 6 digits from data area are the compressed data from five characters for the manufacturer code and five characters for the product code of UPC-A. UPC-E has supplemental barcodes UPC-E+2 and UPC-E+5 which are generally used for periodicals, books, etc.
.NET UPC-E barcode component for Winforms encodes:
- Digits characters: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
.NET Barcode Image Drawing Library - UPC-E Barcode Generation
Requirements:
To generate UPC-E in Windows Forms applications, you need install:
- Windows XP/Windows Vista/Windows 7, etc
- .NET 2.0/3.0/3.5/4.0 and later version
- Visual Studio 2005/2008/2010
- .NET UPC-E Generator for WinForms
Generate UPC-E Barcodes Using .NET Forms Barcode Maker Control
- Create a new project in you Visual Studio;
- Copy Avapose.linearbarcode.winforms.dll to your Winforms project folder;
(Do not copy the dll to .NET bin directory, Visual Studio will do so.) - Add Winforms Control to your Visual Studio Toolbox;
- Find Component LinearWinControl in the Toolbox and drag LinearWinControl component onto your form;
- Go to Property tab and change Barcode Type to "UPC-E ";
- Change other barcode parameters if necessary. Debug it and then a UPC-E occurs.
Create and print UPC-E barcode images in C#.NET and VB.NET using .NET Barcode Assembly
- Create a new project in you Visual Studio;
- Copy Avapose.linearbarcode.winforms.dll to the project folder of your Windows Forms Application;
(The DLL will be copied to the bin directory automatically) - Add Avapose.linearbarcode.winforms.dll to your Winforms project reference;
- Copy those following samples accordingly and debug them, you will find UPC-E generated in you Winforms projects.
C# code
using Avapose.linearbarcode;
Linear Barcode = new Linear();
Barcode.LinearBarcode = Upce;
Barcode.BarcodeData = "123456";
barcode.BarHeight_Y = 60;
barcode.BarWidth_X = 2;
barcode.Rotation = Avapose.linearbarcode.Rotation.Degree90;
barcode.Resolution = 96;
barcode.MeasurementUnit = Avapose.linearbarcode.MeasurementUnit.Pixel;
barcode.BackgroundColor = Color.White;
barcode.ForegroundColor = Color.Black;
barcode.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif;
Barcode.DrawBarcodeImag(""d:\\barcode.gif"");
VB code
Dim barcode As Avapose.linearbarcode.Linear = New Avapose.linearbarcode.Linear()
barcode.LinearBarcode = Avapose.linearbarcode.LinearBarcode.Upce
barcode.BarcodeData = "123456"
barcode.MeasurementUnit = Avapose.linearbarcode.MeasurementUnit.Pixel
barcode.BarWidth_X = 2
barcode.BarHeight_Y = 50
barcode.Resolution = 72
barcode.Rotation = Avapose.linearbarcode.Rotation.Degree90
barcode.BackgroundColor = Color.Aquamarine
barcode.UPCESystem = 0
barcode.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif
barcode.DrawBarcodeImage("e://barcode.gif")