Our Customers
Contact Us Email: support@barcodelib.com
Home > .NET WinForms Barcode > Windows Forms Barcode Generation Guide > ITF-14 Barcode Generating for .NET Windows Forms Application
Download Barcode for .NET WinForms Trial

ITF-14 Barcoding DLL for .NET WinForms

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
  1. To WinForms Project
    • Right click in "Solution Explorer" and choose "Add Reference...".
    • Click "Browse" to find Barcodelib.Barcode.WinForms.dll in the trial package.
  2. 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.
  1. Add Barcodelib.Barcode.WinForms.dll to project reference.
  2. 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";

barcode.BearerBars = BearerBar.Frame;
barcode.BearerBarWidth = 3;
barcode.N = 3;

barcode.BarWidth = 1;
barcode.BarHeight = 80;
barcode.LeftMargin = 10;
barcode.RightMargin = 10;
barcode.TopMargin = 10;
barcode.BottomMargin = 10;


// save barcode image into your system
barcode.drawBarcode("c://barcode.png");

VB.NET Code for ITF-14 Barcode Generation
     Dim itf14 As New BarcodeLib.Barcode.Linear()
itf14.Type = BarcodeType.ITF14

' should be 13 digits
itf14.Data = "3011234500001"

itf14.BearerBars = BearerBar.Frame
itf14.BearerBarWidth = 3
itf14.N = 3

itf14.BarWidth = 1
itf14.BarHeight = 80
itf14.LeftMargin = 10
itf14.RightMargin = 10
itf14.TopMargin = 10
itf14.BottomMargin = 10


' save barcode image into your system
itf14.drawBarcode("c://barcode.png")

.NET WinForms Barcode DLL Supported Barcode Types
WinForms 1D Barcodes:
WinForms 2D Barcodes:
2D Barcodes Included: Data Matrix, PDF 417, QR-Code.



See Also: Related Barcoding Tutorials

.NET Windows Forms Visual C# & Visual Basic Barcoding Tutorials