Home  >  .NET Windows Forms Barcode Component  >  .NET WinForms Barcoding Tutorial  >  EAN-13 Barcode Generation in .NET Windows Forms Application
.NET WinForms EAN-13 Barcode Generator Component
.NET WinForms EAN-13 Barcode Creator Component & DLL has been used for more than +500 .NET developers to create, add, or generate EAN13 barcodes in .NET Windows Forms project. This .NET Windows Forms barcode generator control can generate EAN-13 barcode images using C# and VB.NET class code.
Overview - .NET WinForms EAN-13 Barcode Generator Control
The KeepDynamic EAN-13 Barcode DLL Class Library for .NET Windows Forms help you integrate the EAN-13 barcode generation features into your .NET projects. The .NET EAN-13 Barcode Control for Windows Forms can easily and quickly create EAN-13, EAN-13 Supplement 5 Add-On, and EAN-13 Supplement 2 Add-On in .NET Window Forms project. The .NET Windows Forms EAN-13 Barcode control is easy-to-use and supports most popular .NET Development Tools like Microsoft Visual Studio2005/2008/2010 and Express Editions. Generated EAN-13 barcode images are compatible with latest the latest EAN-13 barcode standards.
Related .NET barcode generating solutions for creatinf EAN-13 barcode image:
Technologies of Windows Forms EAN-13 Barcode Generator Control
Customize EAN-13 Images Using .NET Windows Forms Barcode Generator Library
View more about EAN13 Barcode Properties of .NET Windows Forms Barcode Generator Library
How to Generate EAN-13 Barcode Images in .NET Windows Forms Project

Generate EAN-13 Barcode Image Without Using Programming Code

  1. Add KeepDynamic.BarCode.Windows.dll to your Windows Forms project
  2. Add KeepDynamic.BarCode.Windows.dll to Visual Studio Toolbox. After this step, you can see four new items visible on the toolbox, that is, BarCodeControl, QRCodeControl, DataMatrixControl, and PDF417Control.
  3. Drag & drop BarCodeControl to your .NET WinForms project and you will see a standard Code 128 barcode image.
  4. Click generated barcode image, change the value of SymbologyType to EAN13 and adjust the value of CodeText to a 12-digit data string in the Properties window

Generate EAN-13 Barcode Image Without Using C# or VB.NET Class Code

  1. Add KeepDynamic.BarCode.Windows.dll to your Windows Forms project
  2. Copy following C# or VB.NET class code to generate EAN-13 barcode images in Windows Forms project
Free C# code for EAN-13 barcode generation using .NET Windows Forms barcode generating library
// generate linear barcode object 
BarCode barcode = new BarCode();

// Set barcode type to EAN13
barcode.SymbologyType = SymbologyType.EAN13;

// Enter 12-digit data string
barcode.CodeText = "123456789123";

// set EAN13 barcode image settings
// Set bar width of EAN13
barcode.X = 2;

// set EAN13 barcode image
barcode.BarCodeWidth = 250;
barcode.BarCodeHeight = 90;

// save generated barcode images to png image file using C#
barcode.drawBarcode("C://kdean13.png");
Free VB.NET code for EAN-13 barcode generation using .NET Windows Forms barcode generating library
' generate linear barcode object 
Dim barcode As New BarCode()

' Set barcode type to EAN13
barcode.SymbologyType = SymbologyType.EAN13

' Enter 12-digit data string
barcode.CodeText = "123456789123"

' set EAN13 barcode image settings
' Set bar width of EAN13
barcode.X = 2

' set EAN13 barcode image
barcode.BarCodeWidth = 250
barcode.BarCodeHeight = 90

' save generated barcode images to png image file using C#
barcode.drawBarcode("C://kdean13.png")
Read more about barcoding tutorial for .NET barcode generator library: Add barcode creating features into .NET projects using .NET Windows Forms barcode control
Barcode Types - EAN-13 .NET Windows Forms Barcode Generator Control