UPC-E Barcode Generator for VB.NET



Generating, printing UPC-E barcodes in VB.NET programs with VB.NET barcode component

EAN-8 C# Barcode Library SDK is one function of VB.NET Barcode Control Component DLL, which supporting other linear and 2D barcodes generation in VB.NET, such as Generate QR Code using VB.NET class library with barcode software dll, Print Data Matrix using VB.NET class, Encode PDF-417 in VB.NET program with sourcecode, Integrate UPC in VB.NET projects with exact barcode image scannable, Insert Code 39 barcodes using VB.NET class with tutorial of generation, Integrate Code 128 barcodes into VB.NET project with sample coding.

Besides Barcode Generator for VB.NET class library, Terrek also provides ASP.NET Barcode Generator, Generate Barcodes in Windows Applications , Generate barcodes in C# class library, Barcode Generator for Crystal Reports, Barcode Generator for RDLC, Barcode Generator for Reporting Service.



UPC-E Barcode Generator for VB.NET - Benefits



Easy to Use Easy to install, drag and drop onto your VB.NET Windows Forms and VB.NET ASP.NET web forms

Support Development Environment Create, print UPC-E barcodes in VB.NET ASP.NET web applications, Microsoft Visual Studio, VB.NET Crystal Reports document, VB.NET class & console applications

Support Programming Language 100% Support Visual Basic.NET and provide VB.NET source code

Rich Barcode properties Simple to change UPC-E size by adjusting X, Y dimension, margin, wide to narrow ratio

Simple to customize UPC-E barcode images with color, resolution and orientation

Automatically add computing checksum digit for UPC-E

Easy to enable or disable UPC-E human-readable characters with specified font, color, margin

Support UPC-E special settings Support to generate UPC-E supplement 2-digit barcode and UPC-E supplement 5-digit barcode

Support to specify supplement data with space and height

GS1 Standard Easy to generate GS1 standard compatible UPC-E barcodes



UPC-E Barcode Generator for VB.NET --- Overview



Visual Basic .NET UPC-E Barcode Generator is a one function of .NET barcode generating component, written in Visual Basic.NET, is a mature and flexible barcode generating control to create, print UPC-E and another 40+ linear & 2D barcodes.

UPC-E Introduction

Symbology Encode data Barcode Length Barcode Sample Image

UPC-E 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 1 system number+ 6 digits + 1 checksum digit



Creating UPC-E Barcodes in VB.NET class



Creating UPC-E Barcodes in VB.NET class

Dim upce As Terrek.Barcode.Linear

//UPC-E encoding set, including UPCE, UPCE_2, UPCE_5

upce.Type = BarcodeType.UPCE

// UPC-E valid character set, including numeric data 0-9

upce.Data = "727136"

// UPC-E supplement data 2 or 5 digits

upce.SupData = "33"

// UPC-E supplement barcode bar height

upce.SupHeight = 0.9f

// UPC-E inter-space between barcode and supplement barcode

upce.SupSpace = 14

// UPC-E module width and height

upce.X = 3

upce.Y =90

// UPC-E margin size of left, right, top and bottom

upce.LeftMargin = 2

upce.RightMargin = 2

upce.TopMargin = 2

upce.BottomMargin = 2

// Show or hide UPC-E human-readable character

upce.ShowText = True

// Customize UPC-E human-readable character with font, color and margin

upce.TextFont = New Drawing.Font("Arial", 11.0F, Drawing.FontStyle.Italic)

upce.TextColor = Color. Green

upce.TextMargin = 4

// Specify UPC-E barcode image

upce.Resolution = 96

upce.Rotate = Rotate.Rotate90

upce.Format = Drawing.Imaging.ImageFormat.Jpeg()

upce.draw("...\upce.Jpeg")

Drawing & printing barcode to .NET Graphics, Stream & Bitmap objects

Public Sub drawBarcode(ByRef graphics As Graphics)

Public Sub drawBarcode(ByVal filename As String)

Public Function drawBarcode() As Bitmap

Public Sub drawBarcode(ByRef fileStream As Stream)