ITF-14 Barcode Generator for VB.NET



Generating, printing ITF-14 barcodes in VB.NET programs with VB.NET barcode component

EAN-8 C# Barcode Library SDK is one function of VB.NET Barcode Control Component DLL, which supporting other linear and 2D barcodes generation in VB.NET, such as Generate QR Code using vb.net, Print Data Matrix using VB.NET with source code option, Encode PDF-417 in VB.NET class with sample code free, Integrate UPC in VB.NET with barcode software SDK, Insert Code 39 barcodes in VB.NET program with sample code, Add Code 128 barcodes into VB.NET projects with example.

Besides Barcode Generator for VB.NET class library, Terrek also provides ASP.NET Barcode Generator to print barcodes with detail tutorial, Generate Barcodes in Windows Applications with barcode control DLL, Generate barcodes in C# class library with source code, Barcode Generator for Crystal Reports to create barcodes export to pdf using database, generate barcodes in Local Report with Barcode Generator for RDLC, Barcode Generator for Reporting Service to create barcodes with valid size and image setting.



ITF-14 Barcode Generator for VB.NET - Benefits



Easy to Use Easy to install, drag and drop onto your VB.NET Windows Forms and VB.NET ASP.NET web forms

Support Development Environment Create, print ITF-14 barcodes in VB.NET ASP.NET web applications, Microsoft Visual Studio, VB.NET Crystal Reports document, VB.NET class & console applications

Support Programming Language 100% Support Visual Basic.NET, and provide VB.NET source code

Rich Barcode properties Simple to change ITF-14 size by adjusting X, Y dimension, margin, wide to narrow ratio

Simple to customize ITF-14 barcode images with color, resolution and orientation

Easy to enable or disable ITF-14 human-readable with customized font, color, margin

Automatically add computing checksum digit for ITF-14 barcodes

Support ITF-14 special settings Easy to create bearer bar for ITF-14 barcode

Support to specify the proportion of Wide bars and narrows bars in ITF-14 barcodes

GS1 standard Support to generate GS1 standard compatible ITF-14 barcodes



ITF-14 Barcode Generator for VB.NET --- Overview



Visual Basic .NET ITF-14 Barcode Generator is a one function of .NET barcode generating component, written in Visual Basic.NET, is a mature and flexible barcode generating control to create, print ITF-14 and another 40+ linear & 2D barcodes.

ITF-14 Introduction

Symbology Encode data Barcode Length Barcode Sample Image

ITF-14 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 13 digits + 1 checksum digit



Creating ITF-14 Barcodes in VB.NET .NET class



Creating ITF-14 Barcodes in VB.NET class

Dim itf14 As Terrek.Barcode.Linear

//ITF-14 encoding set

itf14.Type = BarcodeType.ITF14

// ITF-14 valid character set, including numeric data 0-9

itf14.Data = "9568964123654"

// ITF-14 proportion of wide bar and narrow bar, ranging from 2.0 to 3.0

itf14.N = 2.1f

// ITF-14 bearer bar style, size vs bar module

itf14.BearerBarHori = 10

itf14.BearerBarVert = 9

// ITF-14 module width and height

itf14.X = 3

itf14.Y =60

// ITF-14 margin size of left, right, top and bottom

itf14.LeftMargin = 7

itf14.RightMargin = 7

itf14.TopMargin = 7

itf14.BottomMargin = 7

// Show or hide ITF-14 human-readable character

itf14.ShowText = True

// Customize ITF-14 human-readable character with font, color and margin

itf14.TextFont = New Drawing.Font("Arial", 10.5F, Drawing.FontStyle.Regular)

itf14.TextColor = Color.Blue;

itf14.TextMargin = 6;

// Specify ITF-14 barcode image

itf14.Resolution = 72

itf14.Rotate = Rotate.Rotate90

itf14.Format = Drawing.Imaging.ImageFormat.Png()

itf14.draw("...\itf14.png");

Drawing & printing barcode to .NET Graphics, Stream & Bitmap objects

Public Sub drawBarcode(ByRef graphics As Graphics)

Public Sub drawBarcode(ByVal filename As String)

Public Function drawBarcode() As Bitmap

Public Sub drawBarcode(ByRef fileStream As Stream)