.NET Barcode Generator
for Windows Forms Application
Winforms .NET Barcode Generation SDK
Barcode .NET WinForms > Barcode in .NET WinForms > EAN-13
Barcode Overview
EAN-13 .NET Barcode Generator for Winforms Application
Generating EAN-13 and EAN-13 with supplement barcode in .NET Windows Forms
EAN-13 Barcode Generator for Winforms - Overview
EAN-13 Winforms .NET Barcode Generator is developed by Aspper for .NET Winforms users to generate and integrate EAN-13 into .NET applicaitons. The generator/library is an easy-to-use .NET Winform control/DLL that generates dynamic EAN-13 barcode in high quality images using VB.NET & C#.NET sample codes.
EAN-13 is the most popular barcode symbology worldwide. It encodes Global Trade Item Numbers so that products around the world could be tracked and managed easily. GTIN (Global Trade Item Numbers) in an EAN-13 has four components: GS1 Prefix, Company number, Item reference, and Check digit. All of these are made by numeric digits, and there are 13 digits in each EAN-13.
Aspper.com helps .NET programmers to generate most popular dynamic linear and 2D barcodes in Winfroms applications using barcode library for VB & C# .NET applications. Complete information & free trial package are provided.

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

Data Matrix,PDF-417,QR Code
EAN-13 Barcode Generator/Library for Winforms - Benefits
Aspper.com provides User Guide for Winforms and complete solution for generate dynamic EAN-13 barcode symbolgoy into .NET applications.
How to Create EAN-13 in Windows Forms

How to Drag & Drop EAN-13 Barcode Generator Control to Winforms

  1. Download Barcode Generator for Winforms and install it in your .NET IDE
  2. Add the Winforms control to the Toolbox
  3. Drag and drop installed control to your Winforms
  4. Select EAN-13 in Symbology property to use EAN-13 Barcode Generator
  5. Start Debugging to preview the EAN-13
  6. Redefine values of EAN-13 properties

How to Draw EAN-13 using Visual Basic/C#.NET Class

  1. Install Winforms Barcode Generator
  2. Add the Winforms DLL to .NET project reference
  3. Use BarCode class to print EAN-13 in your .NET Class
  4. Add the following C#.NET code or VB.NET code to your .NET class:
C#.NET Code:
BarCode barcode = new BarCode(); 
ean13.Symbology = Symbology.EAN13;
ean13.Data = "351475147514";
ean13.BarcodeImageWidth = 175;
ean13.BarcodeImageHeight = 50;
ean13.X = 6;
ean13.Y = 6;
.AutoResize = true;
ean13.draw("...\ean13_csharp.gif");
VB.NET Code:
Dim ean13 As Aspper.Barcode.Encoder.ClassLibrary.BarCode = NewAspper.Barcode.Encoder.ClassLibrary.BarCode 
ean13.Symbology = Aspper.Barcode.Encoder.ClassLibrary.Symbology.EAN13
ean13.Data = "650865086508"
ean13.BarcodeImageWidth = 175
ean13.BarcodeImageHeight = 50
ean13.X = 6
ean13.Y = 6
ean13.AutoResize = True
ean13.draw("...\ean13_vb.gif")

How to Add Supplement barcode beside EAN-13

If supplement barcode are to be used beside EAN-13, please select EAN13Sup2 or EAN13Sup5 instead of EAN13. EAN13Sup2 is for 2-digit supplement barcode and EAN13Sup5 is for 5-digit supplement barcode. Then, you should input supplement data in SupData property.