barcode making api for .NET  >  vb.net barcode creating component  >  generate Intelligent Mail barcode with vb.net


VB.NET Intelligent Mail Barcode Generator

generate, create IM barcode or OneCode barcode for .NET framework project with Visual Basic


Overview

USPS Intelligent Mail Barcode (OneCode), a.k.a. Intelligent Mail, OneCode 4CB, USPS 4CB, USPS OneCode Solution Barcode, VB.NET Barcode generator, provided by KeepDynamic.com, is a USPS Intelligent Mail Barcode (OneCode) creator. It aims to help you easily and simply create USPS Intelligent Mail Barcode (OneCode) in your .NET projects.

Related barcode solutions for creating OneCode barcode images



Features

USPS Intelligent Mail Barcode (OneCode) VB.NET Barcode Generator Technologies

Our USPS Intelligent Mail Barcode (OneCode) Barcode Generator for VB.NET is completely developed in .NET 2.0, and is compatible with the .NET 2.0 and greater development environments. You can easily integrate USPS Intelligent Mail Barcode (OneCode) barcodes into your VB.NET apps. USPS Intelligent Mail Barcode (OneCode) is also able to be immediately generated in your VB.NET Classes and console apps. In VB.NET, ASP.NET web projects, and VB.NET Windows Forms software, barcode images can be easily created. This VB.NET Barcode Generator also supports the generation of USPS Intelligent Mail Barcode (OneCode) barcodes in Reporting Service & Crystal Reports.

Intelligent Mail Barcode images generated by Barcode Generator for VB.NET

This USPS Intelligent Mail Barcode (OneCode) VB.NET Barcode Generator supports the image formats such as JPEG, GIF, TIFF, BMP, and PNG. Properties of Intelligent Mail Barcode, such as the barcode size, are able to be configured according to users' requirements and the image orientation support 0, 90, 180, or 270 degrees. With the thermal printer support, high quality USPS Intelligent Mail Barcode (OneCode) barcode images are able to be printed on high resolution printers as well as on low resolution printers. White bar increase option increases the blank space between the bars for improving the readability.

Customization of USPS Intelligent Mail Barcode (OneCode) Barcodes

USPS Intelligent Mail Barcode (OneCode) VB.NET Barcode generator provides diversified options for easily customizing the USPS Intelligent Mail Barcode (OneCode) barcodes. Text Options enables or disables the human-readable text in the USPS Intelligent Mail Barcode (OneCode) VB. NET barcode generator. Graphic Configuration Options configure the colors of the foreground and background. Tilde Functions allow the functions, such as returns, tabs and other ones, to be encoded easily. Bearer bar for USPS Intelligent Mail Barcode (OneCode) barcode are easy to be generated

USPS Intelligent Mail Barcode (OneCode) barcode Source code and Developer License

USPS Intelligent Mail Barcode (OneCode) VB.NET source code is supplied with the purchase of unlimited developer licenses. Royalty will be free with the purchase of a Developer License.

Create OneCode in VB.NET

Imports KeepDynamic.Barcode.Generator
Imports System.Drawing.Imaging


Dim barcode As KeepDynamic.Barcode.Generator.BarCode
barcode = New KeepDynamic.Barcode.Generator.BarCode()

'Set the barcode type to USPS Onecode (Intelligent Mail barcode) symbology
barcode.SymbologyType = SymbologyType.Onecode

'Assign the value that are encoded into USPS Onecode barcode.
'Valid character set of USPS Onecode includes,
' Numeric digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
'Onecode symbol encodes fixed data length of 20, 25, 29, and 31 digits

barcode.CodeText = "12345678901234567890"

'Enable the checksum option for Onecode barcode symbology
'and the check digit will not appear in the human-readable text

barcode.EnableChecksum = True

'Choose the barcode graphic measurements as Pixel to USPS Onecode barcode
barcode.GraphicsUnit = KeepDynamic.Barcode.Generator.GraphicsUnit.Pixel

'Assign the values of bar width and bar height to Onecode barcode
barcode.X = 2
barcode.Y = 75

'Set the margins around the Onecode barcode symbology
barcode.LeftMargin = 0
barcode.RightMargin = 0
barcode.TopMargin = 0
barcode.BottomMargin = 0

'Set the resolution of Onecode barcode image that is drawn to,
'and change the Onecode barcode image orientation

barcode.Resolution = 72
barcode.Rotate = Rotate.Rotate0

'Display the characters encoded into the Onecode barcode symbology
'Set the font style of characters encoded into the Onecode barcode

barcode.DisplayCodeText = True
barcode.CodeTextFont = New Font("Arial", 11f, FontStyle.Regular)

'Set Onecode barcode drawing image format to PNG in VB.NET
'Generate Onecode barcode image in Visual Basic .NET

barcode.Format = ImageFormat.Png
barcode.drawBarcode("C://barcode-onecode-vbnet.png")