BizCode Barcode Generator for Winforms
The most robust & powerful barcode component for Microsoft .NET Windows Forms
Quick Overviews
  • Professional barcode control
  • Flexible controls provided
  • Support WinForms projects
  • Linear & 2D barcodes support
  • Winforms Data-binding support
How to Generate EAN-128/GS1-128 in .NET WinForms Library
EAN-128/GS1-128 (a.k.a. EAN-128, UCC-128, EAN/UCC-128) is adopted in the GS1 system of standards using the Code 128 barcode specification. It is an alphanumeric, high-density linear barcode symbology encodes an AI to indicate that what type of data is encoded.
.NET Winforms EAN-128/GS1-128 Barcode Generator is a .NET control package. By installing this generator developers are easy to generate EAN-128/GS1-128 barcode with comprehensive C#, VB.NET sample codes and draw EAN-128/GS1-128 barcode with .NET Design View Barcode control.
EAN-128/GS1-128 Barcode Generator for .NET Winforms supports Windows Forms data-binding scenarios and does not require any special and complex configuration. It is able to work with Microsoft Visual Studio.

.NET Winforms EAN-128/GS1-128 Barcode Generatorprovides a complete barcode generating guide for users to generate EAN-128/GS1-128 barcodes according to EAN-128/GS1-128 Specification - GS1 General Specification (Version 8). You can get more specific tutorials here on how to encode valid data for EAN-128/GS1-128, how customize EAN-128/GS1-128 barcode image, and how to specify proper size for EAN-128/GS1-128.
EAN-128/GS1-128 Generator for .NET Winforms Features
Encodable CharactersSupport to encode:
- Standard ASCII characters 0-127 (default: ISO/IEC 646)
- Extended ASCII characters 128-255 (default: ISO/IEC 8859-1)
Easy to UseEasy to integrate EAN-128/GS1-128 barcode generating capabilities into .NET Windows Forms Application, .NET Class and Console Applications
Programming LanguageCompleted run in Visual C#, Visual Basic.NET, Managed C++ and Borland Delphi for .NET
Image & SizeProvides advanced options to customize EAN-128/GS1-128 barcode image, size and human-readable text
High-quality ImageGenerate high-quality EAN-128/GS1-128 barcode image for all printers. No special printers or hardware are required
Check Digit OptionAutomatically add compute Mod 103 check digit for EAN-128/GS1-128 barcodes
EAN-128/GS1-128 for .NET Winforms Requirements
Windows OS
- Microsoft Windows 7
- Windows Server 2008
- Windows Vista
- Windows Server 2003
- Windows XP
Development Environments
- .NET 2.0/3.0/4.0
- C#, VB.NET, Managed C++, Borland Delphi    for.NET
- Visual Studio 2005/2008/2010
- .NET Windows Forms Application
- .NET Class and Console Application
Install EAN-128/GS1-128 Generator for .NET Winforms
  1. Download BizCode Generator for Winforms and unzip;
  2. Add reference: Add "BusinessRefinery.Barcode.Win.dll" to your .NET Winforms project reference;
  3. Add to toolbox: To add Barcode Control to your .NET Winforms Web Forms toolbox.
How to Drag & Drop Barcode Control into .NET Winforms projects?
  1. Install .NET Winforms Barcode Control;
  2. Add .NET Winforms Barcode Control onto your .NET Visual Studio Toolbox;
  3. Drag and drop the WinLinearBarcode control into the Forms;
  4. You will see a barcode image generated; more EAN-128/GS1-128 barcode setting please see below.
How to Generate EAN-128/GS1-128 with C#, VB.NET Class in .NET Winforms?
Copy those following sample code to your .NET Winforms projects:
using BusinessRefinery.Barcode;

Linear barcode = new Linear();
barcode.Symbology = Symbology.EAN128;
barcode.Code = "(01)23456789";
barcode.Resolution = 104;
barcode.Rotate = Rotate.Rotate180;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/ean-128-csharp.gif");
Dim barcode As BusinessRefinery.Barcode.Linear = 
New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.EAN128
barcode.Code = "(01)23456789"
barcode.Resolution = 104
barcode.Rotate = BusinessRefinery.Barcode.Rotate.Rotate270
barcode.Format = System.Drawing.Imaging.ImageFormat.Gif
barcode.drawBarcode2ImageFile("c:/ean-128-vb-net.gif")