EAN 8 Digits Barcode Generator for .NET Applications
- Easy to use .NET Barcode component for .NET Framework 2.0, 3.0, 3.5, 4.0
- Support VB.NET, C#, Managed C++ and Borland Delphi for .NET
- Compatible with most common 1D/2D and postal barcode symbology standards
EAN 8 Barcode Creator Component for .NET Applications
- Create & print EAN 8 barcode images easily in Windows Forms applications
- Generate accurate barcode that compliant to GS1 general specifications
- Allow class library implementation & drag-and-drop implementation
- Properties customization include height, margins, width, X-dimension of created images
- Fully integrated with .NET Framework 2.0, 3.0, 3.5, and greater
- Free trial package & C#, Visual Basic sample codes are available
- Print accurate barcodes for low-resolution & high-resolution printers
- 100% managed code created in C# .NET
Avapose.Barcode for .NET Winforms provides the most advanced .NET control for inserting EAN 8 barcodes into Windows Forms applications. EAN 8 barcode library is 100% integrated with VB .NET, C# .NET, Borland Delphi.NET and other .NET environment that supports custom Windows Forms component. Avapose offers mature .NET control with flexible licensing which includes royalty free and perpetual licenses.
EAN 8 barcode class library support project types:
- .NET Class Library (runtime support)
- .NET Console Application (runtime support)
- Windows Service (runtime support)
- Windows Application (design-time and runtime support)
EAN8 Barcode Drawing Library for .NET projects - EAN 8 Information
EAN 8, variant of EAN 13, is also the member of EAN / UPCA barcodes family. It is the zero-suppressed and space-saving linear barcode which is widely used in labeling small packages. Detail information could be encoded by utilizing 2 or 5 supplemental digits add-on of EAN 8.
.NET EAN 8 control for Winforms encodes:
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
Linear Barcode Generation Component for .NET - EAN8 Barcode Creation
Development Environment:
This part specifies the requirements for using EAN 8 barcode control for Winforms:
- Support operating systems include Windows XP, Windows Vista and Windows 7
- 100% integrated with .NET Framework 2.0, 3.0 3.5, 4.0 and above
- Perform well in Microsoft Visual Studio 2005, 2008 and 2010
- Make sure you install Avapose.Barcode for .NET Winforms
Install and register .NET barcode writer control in .NET projects for EAN8 barcode generation
- Download Avapose.Barcode for .NET Winforms and unzip it on userâs computer;
- Open your C# or VB.NET Winfroms project in Visual Studio;
- Navigate to the Avapose.linearbarcode.winforms.dll and add it as item to the toolbox;
- Drag and drop the "LinearWinControl" to the form;
- Switch to the property-setting panel, choose barcode type as EAN 8 and input target data to create desired EAN 8.
Make and print EAN8 barcode in C# and VB.NET using .NET Linear Barcode Generator API
- Start Visual Studio and open your C# or VB Windows Forms project;
- Downlad & unzip Avapose.Barcode for .NET Winforms trial package;
- Navigate to the Avapose.linearbarcode.winforms.dll and add it to the Winforms project reference;
- Drag and drop a button to the form; double click it;
- Write the C# or VB code samples below;
- Debug it, EAN 8 barcode image will be displayed on the form.
C# code
using Avapose.linearbarcode;
Linear Barcode = new Linear();
Barcode.LinearBarcode = LinearBarcode.Ean8;
Barcode.BarcodeData = "1234567";
Barcode.BarWidth_X = 2;
Barcode.Rotation = Degree0;
Barcode.BarcodeHeight = 2;
Barcode.BarcodeWidth = 60;
Barcode.ResizeBarcode = true;
Barcode.DrawBarcodeImag("D://ean_8_csharp.gif");
VB code
Dim a As Avapose.linearbarcode.Linear = New Avapose.linearbarcode.Linear()
winforms.LinearBarcode = Avapose.linearbarcode.LinearBarcode.Ean8
winforms.BarcodeData = "1234567"
winforms.BarWidth_X = 2
winforms.BarHeight_Y = 60
winforms.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif
winforms.DrawBarcodeImage("D://ean_8_vb.gif")