Barcode Crystal > Barcode in Crystal > Linear > .NET ITF-14 in Crystal
  • Simple to integrate into your Crystal Reports
  • Rich ITF-14 settings to customize your generating barcodes
  • Minimum ITF-14 knowledge required, with complete developer guides
  • Comprehensive C#, VB.NET sample codes for ITF-14 generation configured to its barcode specification
  • Also support other linear barcodes: Intelligent Mail, RM4SCC, Code-93, EAN-128/GS1-128, etc
  • Mature and reliable C#.NET Barcode components since 2003
  • Royalty free with Developer License purchased

Quick Jump: ITF-14 Information | ITF-14 in Crystal Reports FAQ

ITF-14 Information

Encodable Character

  • 0, 1, 2, 3, 4, 5, 6, 7, 8, 9

Encodable Data Length

  • Fixed-length
  • 13 digits only
  • Add a check digit in the end
ITF-14 in Crystal Reports - FAQ

This document provides several methods to specify ITF-14 barcodes in Crystal Reports. Please download BusinessRefinery.com ITF-14 Barcode Generator for Crystal Reports.

1. What are these in our Crystal Report Barcode Generator package?

You will find "BarcodeDemoData.mdb", "CustomerDataSet.xsd", "developer guide" and "BusinessRefinery.Barcode.Web.dll" or "BusinessRefinery.Barcode.Win.dll" in the package; See more information on .NET Crystal Report Barcode Generation Guide.

2. How to Install this class library onto your Crystal Reports?

Install .NET Crystal Reports barcode generator can be easy and simple, view Install process for Crystal Reports.

3. How to modify ITF-14 Bearer bar using C# and VB.NET class?

Bearer bar may be created for ITF-14 barcodes. Users may customize Bearer bar style and size for ITF-14 barcodes.

C# class:

Linear barcode = new Linear();
barcode.Symbology = Symbology.ITF14;
barcode.Code = "9876543210123";
barcode.BearerBarStyle = BearerBarStyle.Horizontal;
barcode.BearerBarWidth = 2.0F;

barcode.drawbarcode2ImageFile("C://itf14.gif");

VB.NET class:

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.ITF14
barcode.Code = "9876543210123"
barcode.BearerBarStyle = BearerBarStyle.Frame
barcode.BearerBarWidth = 2.0F

barcode.drawbarcode2ImageFile("C://itf14.gif")

4. How to adjust ITF-14 bar ratio using C# and VB.NET class?

ITF-14 bar ratio is the proportion of wide bar vs narrow bar.

C# class:

using BusinessRefinery.Barcode;

Linear barcode = new Linear();
barcode.Symbology = Symbology.ITF14;
barcode.Code = "9876543210123";
barcode.BarRatio = 2.3;
barcode.drawbarcode2ImageFile("C://itf14.gif");

VB.NET class:

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.ITF14
barcode.Code = "9876543210123"
barcode.BarRatio = 2.3
barcode.drawbarcode2ImageFile("C://itf14.gif")

5. How to customize ITF-14 barcode size using C# and VB.NET class??

ITF-14 barcode size can be influenced by bar width & height, barcode width & height, barcode margin, measurement of unit for barcode.

C# class:

using BusinessRefinery.Barcode;

Linear barcode = new Linear();
barcode.Symbology = Symbology.ITF14;
barcode.Code = "9876543210123";
barcode.BarWidth = 3;
barcode.BarHeight = 90;
barcode.TopMargin = 7;
barcode.BottomMargin = 7;

barcode.drawbarcode2ImageFile("C://itf14.gif");

VB.NET class:

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.ITF14
barcode.Code = "9876543210123""
barcode.BarWidth = 3
barcode.BarHeight = 90
barcode.RightMargin = 7
barcode.LeftMargin = 7

barcode.drawbarcode2ImageFile("C://itf14.gif")





Quick Links