.NET Barcode Generator
for Windows Forms Application
Winforms .NET Barcode Generation SDK
Barcode .NET WinForms > Barcode in .NET WinForms > EAN 128
Barcode Overview
GS1-128 .NET Barcode Class Library for Windows Forms
Robust GS1-128 barcode image generator for Winforms in Visual Basic .NET/C# .NET
GS1-128 Barcode Generation Library/SDK for Winforms - Overview
GS1-128 .NET Barcode Generator for Winforms is a barcode image generator for GS1-128/EAN-128 barcode generation in .NET application. Utilizing GS1-128 Barcode Generator for Winforms, each GS1-128 barcode symbols are precisely drawn in pixels using C#.NET and VB.NET. Therefore, GS1-128 barcode images generated by GS1-128 Barcode Generator for Winforms are with high readability.
GS1-128, formerly known as UCC-128 or EAN-128, is a barcode application standard using Code 128 barcode symbology specification. GS1-128 encodes Application Identifiers to suggest the information type of the descendent data. Dates, batch numbers, quantities, weights, and many other attributes needed by the user could be encoded by GS1-128. Free trial demo and complete tutorial information are provided.
Aspper.com helps .NET programmers to generate most popular dynamic linear and 2D barcodes in Winfroms applications using barcode library for .NET projects. Complete information & free trial package are provided.

Code 39,EAN-13,Code 128, GS1-128,UPC-A

PDF-417,QR Code,Data Matrix
GS1-128 Barcode Generator/SDK for Winforms - Benefits
GS1 Application Identifiers and GS1-128
Aspper.com provides detailed information for Winforms and powerful barcode generators for creating dynamic Data Matrix barcode symbolgoy into .NET applications.
How to generate GS1-128 in Winforms

How to Drag & Drop GS1-128 Barcode Generator Control to Winforms

  1. Install the Barcode Generator DLL in Visual Studio
  2. Add the control DLL to the Toolbox
  3. Drag and drop barcode generator control to your Windows application
  4. Select EAN-128 as bar code type
  5. Start Debugging to preview the GS1-128
  6. Customize the GS1-128 properties

How to Print GS1-128 in Class Library

  1. Install Winforms Barcode Generator
  2. Add GS1-128 Generator for Winforms DLL to .NET project reference
  3. Use the BarCode class to generate GS1-128 in your Class Library
  4. Add the following C#.NET code or VB.NET code to your .NET class:
C#.NET Code:
BarCode ean128 = new BarCode(); 
ean128.Symbology = Symbology.EAN128;
ean128.Data = "(01)12345678901234";
ean128.BarcodeImageWidth = 175;
ean128.BarcodeImageHeight = 50;
ean128.X = 6;
ean128.Y = 6;
ean128.AutoResize = true;
ean128.draw("...\ean128_csharp.gif");
VB.NET Code:
Dim ean128 As Aspper.Barcode.Encoder.ClassLibrary.BarCode = New Aspper.Barcode.Encoder.ClassLibrary.BarCode 
ean128.Symbology = Aspper.Barcode.Encoder.ClassLibrary.Symbology.EAN128
ean128.Data = "(01)12345678901234"
ean128.BarcodeImageWidth = 175
ean128.BarcodeImageHeight = 50
ean128.X = 6
ean128.Y = 6
ean128.AutoResize = True
ean128.draw("...\ean128_vb.gif")