Barcode Crystal > Barcode in Crystal > Linear > .NET Code 11 in Crystal
  • Simple to integrate into your Crystal Reports
  • Rich Code-11 settings to customize your generating barcodes
  • Minimum Code-11 knowledge required, with complete developer guides
  • Comprehensive C#, VB.NET sample codes for Code-11 generation configured to its barcode specification
  • Also support other linear barcodes: ISBN, MSI Plessey, Code-93, Code 2 of 5, etc
  • Mature and reliable C#.NET Barcode components since 2003
  • Royalty free with Developer License purchased

Quick Jump: Code-11 Information | Code-11 in Crystal Reports FAQ

Code-11 Information

Encodable Character

  • 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
  • - (Dash)

Encodable Data Length

  • Variable
  • Less than 10 digits: check digit - "C"
  • 10 characters or longer: check digit - "C" and "K"
Code-11 in Crystal Reports - FAQ

This document provides several methods to specify Code-11 barcodes in Crystal Reports. Please download BusinessRefinery.com Code-11 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 customize Code-11 barcode size using C# and VB.NET class?

Code-11 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.CODE11;
barcode.Code = "98-76-543-210";
barcode.BarWidth = 3;
barcode.BarHeight = 90;
barcode.TopMargin = 7;
barcode.BottomMargin = 7;

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

VB.NET class:

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.CODE11
barcode.Code = "0198-7654-3210"
barcode.BarWidth = 3
barcode.BarHeight = 90
barcode.RightMargin = 7
barcode.LeftMargin = 7

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

4. How to modify Code-11 human-readable text using C# and VB.NET class?

Code-11 human-readable text can be enabled or disable with customized color, font style and margin between Code-11 symbol and text.

C# class:

Linear barcode = new Linear();
barcode.Symbology = Symbology.CODE11;
barcode.Code = "98-76-543-210";
barcode.DisplayText = true;
barcode.TextFont = new Font("Calibri", Font.Bold, 20);
barcode.TextMargin = 9;

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

VB.NET class:

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.CODE11
barcode.Code = "98-76-543-210"
barcode.DisplayText = true
barcode.TextFont = new Font("Calibri", Font.Bold, 20)
barcode.TextMargin = 9

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

5. How to adjust Code-11 barcode image using C# and VB.NET class?

Users may set Code-11 barcode image background color, foreground color, image format, image rotation and resolution.

C# class:

using BusinessRefinery.Barcode;

Linear barcode = new Linear();
barcode.Symbology = Symbology.CODE11;
barcode.Code = "98-76-543-210";
barcode.BackColor = Color.White;
barcode.ForeColor = Color.Green;
barcode.Rotation = Rotate.Rotate90;
barcode.Resolution = 104;

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

VB.NET class:

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.CODE11
barcode.Code = "0198-7654-3210"
barcode.BackColor = Color.White
barcode.ForeColor = Color.Green
barcode.Rotation = Rotate.Rotate90
barcode.Resolution = 104

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





Quick Links