Code 128 Barcode Class Library/Control for VB.NET

Generate Code 128 barcode images into VB.NET application using barcode control
Barcode in VB.NET > Linear > Code 128
Code 128 VB.NET Barcode Control/SDK - Benefits
Easy-to-use Barcode Control SDK
Code 128 VB.NET Barcode Generator provides a complete guideline and code listing to automate barcode creation in VB.NET applications. It supports drag-and-drop & class implementation method.

.NET Barcode Generator SDK library includes ASP.NET Barcode Generator, C# Barcode Generator, VB.NET Barcode Generator, QR Code Generator .NET, QR Code Generator ASP.NET, QR Code Generator C#, QR Code Generator VB.NET, Code 128 .NET, Code 128 VB.NET, Code 128 ASP.NET, Code 128 C#.
Support Programming Language
.NET Barcode Control using VB.NET could be easily used in VB.NET, Managed C++ and Borland Delphi for .NET. All assemblies provided are fully written in C# .NET 2005.
Multiple Image Properties
It is simple to create and save Code 128 images in GIF, PNG, JPEG & BITMAP format images. In addition, it could be printed in a specific orientation such as 0, 90, 180 or 270 degrees.
Support Code 128 special settings
Code 128 has data character code sets, Code Sets A, B, and C, each comprising a subset of the ISO/IEC 646 IRV character set together with various auxiliary characters. Tilde character "~" is easy to be utilized to encode specify special characters.
Multiple Barcode Types Supported in VB.NET
.NET Control for VB.NET Application - Code 128 Overview
Code 128 .NET Control DLL lets you add barcoding features easily into VB.NET applications, Microsoft Visual Studio, VB.NET Crystal Reports document, VB.NET class & console applications. Source code & perpetual license are available in purchased version.
Code 128 Introduction
Code 128 is a continuous, self-checking barcode symbology appended with a mandatory checksum digit. Code 128 is defined by ISO/IEC 15417 (Second edition 2007-06-01).
Code 128 Encodable Characters
  • Standard ASCII characters
  • Extended ASCII characters
Code 128 VB.NET Control/DLL - Code 128 Generation
Add Code 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
Add Code 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.
Generate Code 128 Barcodes using VB.NET - Free VB.NET Sample Code
'Set barcode type, encode data, resize and UOM properties
barcode.Symbol = Terrek.Barcode.BarcodeSymbol.Code128
barcode.BarcodeData = "TerrekCode128VB"
barcode.ImageResize = True
barcode.MeasuringUnit = Terrek.Barcode.MeasuringUnit.PIXEL
'Apply to encode GS1 compatible Data Matrix
barcode.FNC1 = Terrek.Barcode.FNC1.FNC1_0
' Code 128 module width and height
barcode.BarWidth = 1
barcode.BarHeight = 40
' Specify Code 128 barcode image color
barcode.ImageColor = Color.White
barcode.BarColor = Color.Black
' Specify Code 128 barcode image
barcode.DotsPerInch = 96
barcode.Rotation = Terrek.Barcode.Rotation.Degree0
barcode.BarcodeFormat = System.Drawing.Imaging.ImageFormat.Png
barcode.SaveAsImage("C:\code128.png")