Easy to make an order for developer license of VB.NET Barcode Generator SDK online or offline
Brief Introduction of VB.NET GS1-128/EAN-128 Barcode Image
GS1-128 (UCC/EAN 128) is a commonly used linear barcode. As it can encode both data and meanings, GS1-128 exists as an important carrier to encode shipping and product information like date and weight.
How to Generate & Encode GS1-128 Barcodes in VB.NET Class
Right click "Add Reference..." in the Solution Explorer, find Barcodelib.Barcode.ASP.NET.dll or Barcodelib.Barcode.WinForms.dll in the trial package, and Click "OK".
Right click "Choose Item..." in Toolbox, find Barcodelib.Barcode.ASP.NET.dll or Barcodelib.Barcode.WinForms.dll in the trial package, and Click "OK".
Now, you could create a high-quality GS1-128/EAN-128 barcode with following sample VB codes.
Dim gs1 AsNew BarcodeLib.Barcode.Linear() gs1.Type = BarcodeType.EAN128 gs1.Data = "~ai211121211"
' Encode GS1-128 barcode and output to HttpResponse object HttpResponse response = ... gs1.drawBarcode(response)
' Encode GS1-128 barcode and output to Stream object Stream stream = ... gs1.drawBarcode(stream)
Above Free GS1-128 sample codes are written in Visual Basic .NET 2005
How to Create GS1-128 Images in VB.NET ASP.NET Web Projects
BarcodeLib.com VB.NET generator controls supports streaming GS1-128 barcode images in ASP.NET web program.
Right click "Add Reference..." in the Solution Explorer, find Barcodelib.Barcode.ASP.NET.dll or Barcodelib.Barcode.WinForms.dll in the trial package, and Click "OK".
Right click "Choose Item..." in Toolbox, and find ASP.NET & WinForms Barcoding dlls in the trial package, and Click "OK".
Copy files "linear.aspx", "linear.aspx.cs" from the folder barcode in the trial package to your web project.
Drag LinearASPNET from the Toolbox and drop it on the split part of your aspx page. Then you will see a barcode image. Note: this barcode generation SDK default barcode image is Code 128.
Click the produced barcode image and change barcode type to EAN 128 in the Properties Window or generate an EAN 128 barcode with above Visual Basic .NET sample code.
How to Generate GS1-128 Barcodes in VB.NET WinForms Barcode Control
Add BarcodeLib.Barcode.WinForms.dll from the trial package to your WinForms Project.
Add BarcodeLib.Barcode.WinForms.dll to your Visual Studio Toolbox.
Drag LinearWinForm to your windows form and click generated image. Then, adjust its type to EAN 128 in Properties Window or create a GS1-128 barcode with above Visual Basic .NET demo code.
Barcodes Supported by GS1-128 VB.NET Barcode Generator SDK