Create GS1-128(EAN/UCC-128) Barcodes in .NET using VB Class Libary

Generate high quality GS1-128 in VB.NET programs with VB.NET barcode SDK
GS1-128 Barcode Generator SDK in VB.NET - Benefits
Visual Basic.NET Development Environment
VB.NET Barcode Generation SDK supports barcode generation in various VB.NET programs such as VB.NET Windows Forms, VB.NET Crystal Report, Reporting Service for VB.NET, VB.NET console applications & class library.
GS1-128 Basic Properties Customization
Barcode Generator DLL Using VB.NET allows you to easily modify barcode image height, image width, wide to narrow ratio, margins as well as image color, background color, and human-readable text color. Besides, you can rotate barcode images to any angle and generate high quality images without distortion.
Easy AI Generation
Application Identifier is quite easy to be generated with this barcode SDK in VB. Usually, AI is represented with parentheses around it. To encode GS1-128, please do not forget to add the parentheses.
High Quality Image
With .NET Barcode Control SDK in VB.NET, developers can create barcode images in any desired output image format like Png, Bmp, Jpeg, Gif and Tiff. In addition to that, users can generate barcodes in .NET Graphic, Stream & Bitmap Objects.
Barcode Generator Library SDK in VB.NET - GS1-128 Overview
Terrek.Barcode for VB.NET is a fast and powerful .NET DLL class library that lets you easily add barcode generation features to VB.NET grogram. It is completely developed in .NET environment. Source code is available with the purchase of developer license. Free VB.NET sample code is provided for your quick and easy barcode generation.
GS1-128 Introduction
GS1-128, also known as EAN-128, UCC-128, USS-128, GS1 128, UCC.EAN-128, GTIN-128, UCC-12, EAN/UCC-13, EAN/UCC-14, is an application standard within the Code 128 barcode. GS1-128 uses a series of Application Identifier to include additional data such as batch numbers, quantities, weight, etc.
GS1-128 Encodable Character
  • Standard ASCII characters
  • Extended ASCII characters
Barcode Contron DLL in VB.NET - GS1-128 Generation
Make GS1-128 Barcodes in Windows Application using VB.NET
  • Download Terrek.Dotnet.zip, save it in local drive, and unzip;
  • Add Terrek.Barcode.DotNET.dll to the VB.NET Winform project reference;
  • Drag and drop a button to the form, and double-click the button;
  • In the Form1.cs, copy the following VB sample code to the project
Generate GS1-128 Barcodes in ASP.NET Applications using VB.NET
  • Download Terrek ASP.NET barcode trial and unzip;
  • Add Terrek.Barcode.ASPNET.dll to your project. Do not copy the DLL to the bin directory, Visual Studio will do so automatically;
  • Open your Visual Studio in Web Forms with VB code and add Terrek.Barcode.ASPNET.dll to your reference in "Solution Explorer";
  • Go to "Barcode" folder in the trial package, copy files "barcode.aspx" and "barcode.aspx.cs", to the project where aspx barcodes are generated;
  • Right click on the aspx name in "Solution Expolrer" and select "View Code";
  • Copy the sample VB code in to the project and run the program.
Create GS1-128 Barcodes Using VB.NET - Free VB Sample Code
Dim EAN128 As Terrek.Barcode.DotNET.DotNETControl = New Terrek.Barcode.DotNET.DotNETControl
'Set barcode type, encode data, resize and UOM properties
EAN128.Symbol = Terrek.Barcode.BarcodeSymbol.EAN128
EAN128.BarcodeData = "(8100)71234(21)215545"
'EAN128 proportion of wide bar and narrow bar, ranging from 2.0 to 3.0
EAN128.WideVSNarrow = 2.0F
'EAN128 module width and height
EAN128.BarWidth = 2
EAN128.BarHeight = 60
' Customize EAN128 human-readable character with font, color and margin
EAN128.TextColor = Color.Blue
EAN128.TextSpace = 6
EAN128.TextStyle = New Font("Arial", 9.0F, FontStyle.Regular)
' Specify EAN128 image
EAN128.Rotation = Terrek.Barcode.Rotation.Degree180
EAN128.DotsPerInch = 96
EAN128.BarcodeFormat = System.Drawing.Imaging.ImageFormat.Png
EAN128.SaveAsImage("C:\EAN128.png")