EAN-8 VB .NET Generator - Overview
  • Easily integrate with Visual Basic .NET IDEs
  • Compatible with VB Class library
  • Built window control and web control to generate EAN-8 bar code image
  • .NET 2.0, 3.0, 3.5, 4.0 and later version are supported
  • Automatically compute and add Check digit in modulo 10 for every EAN-8
  • Publication symbologies ISBN and ISSN are supported
  • Japanese Article Number (JAN) are supported
  • Encode Global Trade Item Numbers (GTIN) and label GS1 trade items
  • Allow the module to be resized
  • Add flexible Add-on symbol to accompany EAN-8
EAN-8 - Brief Introduction

EAN-8 is the short version of EAN. It is is derived from the longer EAN-13. It was introduced for use on small packages where an EAN-13 barcode would be too large; for example on cigarettes, pencils (though it is rarely used for pencils), and chewing gum packets.
EAN-8 VB .NET Generator - EAN-8 Size Setting Functionality

1. Generate EAN-8 with Add-on Symbol

In EAN-8 Barcode Library for VB.NET, an add-on symbol could be added to an EAN-8 barcode with VB class. The add-on symbol is used to provide supplement information such as issue number and product price.

1. construct a linear barcode object

Dim barcode As BusinessRefinery.Barcode.Linear

barcode = New BusinessRefinery.Barcode.Linear()

2. Select the digits of the supplement barcode by seting linear barcode symbology
EAN-8 with 2-digit supplement barcode:

barcode.Symbology = BusinessRefinery.Barcode.Symbology.EAN8_2

EAN-8 with 5-digit supplement barcode:

barcode.Symbology = BusinessRefinery.Barcode.Symbology.EAN8_5

3. set EAN-8 code text to encode

For example, 98765432:

barcode.Code = "98765432"

4. set EAN-8 supplement code text to encode

For example, 21:

barcode.SupplementCode = "21"

5. draw barcode and save into image file in gif format

For example, Gif:

barcode.drawBarcode2ImageFile("ean8-in-vbnet.gif")
EAN-8 VB .NET Generator - Generating Sample Code

1. How to add EAN-8 VB .NET Generator to your VB.NET Project


Sample Code:
// construct a linear barcode object

Dim barcode As BusinessRefinery.Barcode.Linear

barcode = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to EAN-8

barcode.Symbology = BusinessRefinery.Barcode.Symbology.EAN8

// set EAN-8 code text to encode

barcode.Code = "01234567"

//draw barcode and save into image file in gif format

barcode.drawBarcode2ImageFile("ean8-in-vbnet.gif")




Quick Links