Generate UPC-E images in Reporting Services & Crystal Reports
Generate UPC-E barcode image in Console Application & ASP.NET class
Create linear UPC-E barcode images in VB.NET Windows Forms projects
Support other common linear barcodes, like GS1-128 and EAN-13
Support other 2D barcodes, like Data Matrix, PDF-417 and QR Code
General Introduction for VB.NET UPC-E Barcode Image
UPC-E, a 6-digit numeric barcode symbology, has similar symbol structure with that of UPC-A. In its human-readable text, the first digit stands for number system; the middle six digits stand for Manufacture & Product code; the last digit is checksum.
BarcodeLib.com also supports other GS1 compatible barcodes generation in VB.NET program, such as EAN-8, EAN-13, EAN-128, UPC-A, ITF-14, Data Matrix, QR Code in VB.NET, etc.
UPC-E Barcode Generation in VB.NET Class Lib
Right click "Add Reference..." in the Solution Explorer and add "Barcodelib.Barcode.ASP.NET.dll" or "Barcodelib.Barcode.WinForms.dll" to your project.
Right click "Choose Item..." in Toolbox and add "Barcodelib.Barcode.ASP.NET.dll" or "Barcodelib.Barcode.WinForms.dll" to the Toolbox.
You could generate an UPC-E barcode with following sample VB codes.
Dim upce AsNew BarcodeLib.Barcode.Linear() upce.Type = BarcodeType.UPCE upce.Data = "123456"
' Produce UPC-E barcode to Graphics object Graphics graphics = ... upce.drawBarcode(graphics)
' Produce UPC-E barcode and output to HttpResponse object HttpResponse response = ... upce.drawBarcode(response)
' Produce created UPC-E barcode to Stream object Stream stream = ... upce.drawBarcode(stream)
Above Free UPC-E sample codes are written in Visual VB 2005
UPC-E Barcode Image Generating in VB.NET ASP.NET Web Form
Right click "Add Reference..." in the Solution Explorer and add "Barcodelib.Barcode.ASP.NET.dll" to your project.
Right click "Choose Item..." in Toolbox and integrate "Barcodelib.Barcode.ASP.NET.dll" into your Toolbox.
Copy files "linear.aspx" & "linear.aspx.cs" from the folder barcode in the trial package to your web folder.
Drag "LinearASPNET" from the Toolbox and drop it on the split part of your aspx page.
Click the produced barcode image and change barcode type to UPC-E in the Properties Window or generate an UPC-E barcode with above Free VB.NET UPC-E Encoding Code.
UPC-E Barcode Creation in VB.NET Windows Forms Program
Right click "Add Reference..." in the Solution Explorer and add "BarcodeLib.Barcode.WinForms.dll" to your project.
Right click "Choose Item..." in Toolbox and integrate "BarcodeLib.Barcode.WinForms.dll" into your Toolbox.
Drag "LinearWinForm" from the Toolbox and drop it on your WinForms Project.
Click the produced barcode image and change barcode type to UPC-E in the Properties Window or generate an UPC-E barcode with above Free VB.NET UPC-E Encoding Code.