KA.Barcode for .NET Suite
Guide for Encoding Numeric-only Data in Identcode
Complete VB.NET source code to generate, print Identcode images using Barcode Generator for .NET Suite
Identcode Data Encoding in VB.NET - Character Set and Data Length

Using our Identcode Generator for VB.NET, you may create and encode your required data in Identcode easily. And KeepAutomation provides customers with the details of Identcode valid data characters, data length, and example of encoding valid data in Identcode barcode.

generate barcode in crystal report c#, javascript barcode scanner, generate barcode c# asp.net, c# windows form barcode scanner, barcode rendering framework c# example, how to read barcode in asp.net c#

Identcode, is also named as Deutsche Post Identcode Barcode, German Postal 2 of 5 Identcode, Deutsche Post AG Identcode, Deutsche Frachtpost Identcode, CodeIdentcode, Deutsche Post AG. In addition to Identcode data encoding infomation, its size and image settings are offered by KeepAutomation as well.

Valid Characters of Identcode in VB.NET Generator

A standard Identcode barcode is capable of encoding numeric data only.

Data Length of Identcode in VB.NET Generator

Identcode is a fixed-length barcode symbology. It has 12 digits, check digit included. So, users should input 11 digits of data and our Identcode barcode generator library for VB.NET will compute and add checksum digit to the barcode automatically.

barcode scanner c# wpf, data matrix barcode reader c#, printing barcode from c#, rdlc report print barcode, how to generate multiple barcode in c# windows application, barcode generator crystal reports free download

Identcode Data Encoding in Other Related Generators - C#.NET, Excel and Word

Identcode Data Encoding for Visual C#.NET Application

Identcode Data Encoding for Microsoft Excel 2003, 2007, 2010 Spreadsheet

Identcode Data Encoding for Microsoft Word 2003, 2007, 2010 Document

VB.NET Identcode Data Encoding - How to Encode Data in Identcode

Preparations:

1. Download KeepAutomation Identcode Generator for Visual Basic .NET and unzip it.

2. Install VB.NET Identcode Generator to your VB.NET project in Visual Studio. More details from VB.NET Barcode Generation Guide.

3. Copy the following code to your Visual Basic .NET project and generate the Identcode with your target data.

How to encode numeric data in Identcode with VB.NET Generator



Example 1

Dim barcode As KeepAutomation.Barcode.Bean.BarCode

barcode = New KeepAutomation.Barcode.Bean.BarCode()

barcode.Symbology = KeepAutomation.Barcode.Symbology.Identcode

barcode.CodeToEncode = "11111111110"

barcode.generateBarcodeToImageFile("C://identcode-1-vb-net.png")



Example 2

Dim barcode As KeepAutomation.Barcode.Bean.BarCode

barcode = New KeepAutomation.Barcode.Bean.BarCode()

barcode.Symbology = KeepAutomation.Barcode.Symbology.Identcode

barcode.CodeToEncode = "00000000001"

barcode.generateBarcodeToImageFile("C://identcode-2-vb-net.png")