Linear ITF-14 Barcode Generation in .NET Windows Forms Using C# & VB.NET
Professional ITF-14 barcode generator control used for +1000 .NET WinForms developers
Integrate strong 1d & 2d barcodes generating functions into a .NET WinForms Barcoding DLL
Built in managed C# and supports both VB.NET & C# class programming codes
Generate & save ITF-14 barcode images to both memory and image files
Allow .NET users to adjust barcode properties in .NET Windows Forms program
Provide several royalty-free developer licenses for .NET WinForms application developing
WinForms ITF-14 Barcode Overview
ITF-14 can be regarded as a unique interleaved 2 of 5 barcode type. It is used to track cartons, cases and pallets. This linear barcode can encode a fixed data of 14 characters (including a check digit, which is in general computed automatically). The thick bar around the barcode symbol is known as bearer bars, which will help the ITF-14 barcode decoder to read the ITF-14 barcode accurately.
How to Add ITF-14 Barcode SDK to WinForms Project
To WinForms Project
Right click in "Solution Explorer" and choose "Add Reference...".
Click "Browse" to find Barcodelib.Barcode.WinForms.dll in the trial package.
To Visual Studio
Right click in Toolbox and select "Choose Items...".
Click "Browse..." to locate the Barcodelib.Barcode.WinForms.dll.
Check whether those four new items have been added to the toolbox, namely, QRCodeWinForm, DataMatrixWinForm, PDF417WinForm and LinearWinForm.
How to Generate ITF-14 Barcode in .NET Windows Forms
To create standard ITF-14 barcode image in .NET WinForms, you even do not need any programming skills.
Add Barcodelib.Barcode.WinForms.dll to your WinForms project and Visual Studio toolbox.
Drag & drop LinearWinForm from the Toolbox to your .NET Windows Form.
Select generated barcode image.
Change its barcode type to ITF-14 in the properties window and adjust the data to a 13-digit character in the Properties window (The default value for data type is Code 128).
How to Print ITF-14 Barcode in C# or VB.NET WinForms
Besides the way to generate ITF-14 barcode in .NET Windows Forms, you can also generate ITF-14 barcode using C# or VB.NET class codes.
Add Barcodelib.Barcode.WinForms.dll to project reference.
Copy following sample codes.
C# Code for ITF-14 Barcode Generation
BarcodeLib.Barcode.Linear barcode = new BarcodeLib.Barcode.Linear(); barcode.Type = BarcodeType.ITF14;
// should be 13 digits barcode.Data = "3011234500001";