.NET Barcode Generator
for WinFroms Application in VB.NET
Winforms .NET Barcode Generation DLL
Barcode .NET WinForms > Barcode in .NET WinForms > EAN 128
Linear Barcode in .NET WinForms
Code 39 in VB.NET
Code 128 in VB.NET
EAN-13 in VB.NET
EAN 128 in VB.NET
UPC-A in VB.NET
EAN-128 Barcode Generator for VB.NET
Create, Draw and Print high Quality EAN-128 in VB.NET Apps with EAN-128 Barcode Generating Library
EAN-128 Barcode Generator/Library in VB.NET - Overview
EAN-128/GS1-128/UCC-128 barcode control for VB.NET is an easy-to-use and mature barcode generation SDK to create EAN-128 in varies VB.NET applications including VB.NET Winforms application, VB.NET class & console application and VB.NET reporting service. EAN-128 barcode control for VB.NET allows the generation of barcodes that can be easily be sent to the printer or to images in gif, tiff, bmp, png and jpeg formats. EAN-128 size properties and image properties allow the parameters to be adjusted to meet required specifications.
It is possible to generate and print dynamic linear and matrix barcodes in Windows Forms applications using VB.NET barcode class library using .NET barcode generator.

Linear barcodes: Code 128, EAN-13, Code 39,UPC-A

2D barcodes: Data Matrix,PDF-417,QR Code
EAN-128 Barcode generating SDK for VB.NET- Benefits
EAN-128 Barcode Generation Library for .NET Applications
Aspper.com provides complete information of guideline to generate dynamic EAN-128 barcodes into .NET applications and report solution using VB.NET Class Library.
Generate Dynamic EAN-128/GS1-128 in Visual Basic.NET Applications

Installation of EAN-128 Barcode Control in Visual Studio

  1. First, download VB.NET barcode control and unzip.
  2. Then, copy the barcode dll to the project folder. Do not copy to the bin directory, visual studio will do so automatically.
  3. Last, add Aspper barcode control dll to project reference. To achieve this, you should open visual studio, find the solution explore and reference, right click reference and select add reference, add the Aspper barcode control dll to reference.

Integrate EAN-128 Barcode Image into VB.NET Class

Add EAN-128 barcode control dll to your VB.NET project reference.
'EAN-128 Barcode Basic Setting
Dim barcode As Aspper.Barcode.Encoder.ClassLibrary.BarCode = New Aspper.Barcode.Encoder.ClassLibrary.BarCode
barcode.Symbology = Aspper.Barcode.Encoder.ClassLibrary.Symbology.EAN128
barcode.Data = "(5109)5109"
barcode.ProcessTilde = True

'EAN-128 barcode size including X dimension, Y dimension, image width, image height, rotate, resolution, left margin,
right margin are all available for changing, you may adjust the value to generate the barcode you want.

barcode.UOM = Aspper.Barcode.Encoder.ClassLibrary.UnitOfMeasure.Pixel
barcode.X = 6
barcode.Y = 6
barcode.LeftMargin = 0
barcode.RightMargin = 0
barcode.BarcodeImageWidth = 175
barcode.BarcodeImageHeight = 50
barcode.AutoResize = True
barcode.Angle = Aspper.Barcode.Encoder.ClassLibrary.Angle.Degree0

'EAN-128 text related settings include text color, text font and whether to show the human-readable text.
barcode.ShowText = True
barcode.TextColor = Color.DarkBlue
barcode.TextFont = New Drawing.Font(("Arial", 9.0F, Drawing.FontStyle.Regular)

'EAN-128 Barcode Image Format Set
EAN-128 barcode image may be in gif, tiff, png, bmp and jpeg formats.For example:
barcode.draw(".../ean128.png")