Barcode Crystal > Barcode in Crystal > Linear > .NET Intelligent Mail in Crystal
  • Simple to integrate into your Crystal Reports
  • Rich USPS Intelligent Mail (OneCode) settings to customize your generating barcodes
  • Minimum USPS Intelligent Mail (OneCode) knowledge required, with complete developer guides
  • Comprehensive C#, VB.NET sample codes for USPS Intelligent Mail (OneCode) generation configured to its barcode specification
  • Also support other USPS barcodes: Planet, Postnet
  • Mature and reliable C#.NET Barcode components since 2003
  • Royalty free with Developer License purchased

Quick Jump: USPS Intelligent Mail Information | USPS Intelligent Mail in Crystal Reports FAQ

USPS Intelligent Mail (OneCode) Information

Encodable Character

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

Encodable Data Length

  • Fixed-length
  • 20, 25, 29, 31 digits only
USPS Intelligent Mail (OneCode) in Crystal Reports - FAQ

This document provides several methods to specify USPS Intelligent Mail (OneCode) barcodes in Crystal Reports. Please download BusinessRefinery.com USPS Intelligent Mail (OneCode) 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 USPS Intelligent Mail (OneCode) barcode length using C# and VB.NET class?

USPS Intelligent Mail (OneCode) barcode may encode 20, 25, 29, 31 digits only.

C# class:

using BusinessRefinery.Barcode;

Linear barcode = new Linear();
barcode.Symbology = Symbology.ONECODE;
barcode.Code = "12345678900123456789";
barcode.drawbarcode2ImageFile("C://onecode.gif");

VB.NET class:

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.ONECODE
barcode.Code = "1234567890012345678912345"
barcode.drawbarcode2ImageFile("C://onecode.gif")

4. How to modify USPS Intelligent Mail (OneCode) human-readable text using C# and VB.NET class?

USPS Intelligent Mail (OneCode) human-readable text can be enabled or disable with customized color, font style and margin between USPS Intelligent Mail (OneCode) symbol and text.

C# class:

Linear barcode = new Linear();
barcode.Symbology = Symbology.ONECODE;
barcode.Code = "1234567890012345678912345";
barcode.DisplayText = true;
barcode.TextFont = new Font("Calibri", Font.Bold, 20);
barcode.TextMargin = 9;

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

VB.NET class:

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.ONECODE
barcode.Code = "1234567890012345678912345"
barcode.DisplayText = true
barcode.TextFont = new Font("Calibri", Font.Bold, 20)
barcode.TextMargin = 9

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

5. How to adjust USPS Intelligent Mail (OneCode) barcode image using C# and VB.NET class?

Users may set USPS Intelligent Mail (OneCode) barcode image background color, foreground color, image format, image rotation and resolution.

C# class:

using BusinessRefinery.Barcode;

Linear barcode = new Linear();
barcode.Symbology = Symbology.ONECODE;
barcode.Code = "1234567890012345678912345";
barcode.BackColor = Color.White;
barcode.ForeColor = Color.Green;
barcode.Rotation = Rotate.Rotate90;
barcode.Resolution = 104;

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

VB.NET class:

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.ONECODE
barcode.Code = "1234567890012345678912345"
barcode.BackColor = Color.White
barcode.ForeColor = Color.Green
barcode.Rotation = Rotate.Rotate90
barcode.Resolution = 104

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





Quick Links