KA.Barcode for .NET WinForms
Identcode Barcode Generator for WinForms
Create & Print Identcode Barcodes in WinForms, C#.NET, VB.NET Projects
Overviews

  • Identcode generation in .NET windows applications
  • Easy-to-use & integrate controls completely written in managed C#
  • Generate Identcode and other linear & 2D barcodes in C# class, such as UPC-E , EAN 8 , Codabar , Code 11 , Code 39 , Leitcode , Interleaved 2 of 5 , ITF 14 , and QR Code
  • Add option N to set the proportion of the wide bar to the narrow one in Identcode
  • Show human readable text with customizable Font, Color, and Margin Settings
  • Draw Identcode using C# and VB.NET
  • Generate Identcode in stream object, in graphics object, and image formats
  • Print and save Identcode as gif, jpeg, png, tiff, and bitmap files

Identcode Information

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.

Barcode Character Set Sample Image
Identcode
  • Digits:0, 1, 2, 3, 4, 5, 6, 7, 8, 9;

  • 11 digits encodable


How to Generate Identcode Barcodes using WinForms Barcode Generator

Setup Process

  1. Download KeepAutomation WinForms Barcode Generator from the following link:

    KeepAutomation WinForms Barcode Generator (Evaluation Version)
  2. Unzip the package net_barcode_trial.zip in the project folder

Drag & Drop WinForms Identcode Generator

  1. Open your project by .NET IDE
  2. Add KeepAutomation.Barcode.Windows.dll to project reference
  1. Add KeepAutomation.Barcode.Windows.dll to the Toolbox

  2. Drag and drop KeepAutomation.Barcode.Windows.dll (named BarcodeControl)

Quick Generating Identcode for WinForms Using C#.NET, VB.NET

WinForms Barcode Generator for Identcode set the default value of properties properly, which implement quick Identcode generation in Windows Applications. You can add the following C#.NET or VB.NET Code to project.

Sample Code in C#.NET Sample Code in VB.NET
using KeepAutomation.Barcode.Bean;
BarCode Identcode = new BarCode();
Identcode.Symbology = Symbology.Identcode;
Identcode.CodeToEncode = "1234567";

Identcode.generateBarcodeToImageFile("C://Identcode-csharp.gif");

Dim Identcode As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
Identcode.Symbology = KeepAutomation.Barcode.Symbology.Identcode
Identcode.CodeToEncode = "1234567"

Identcode.generateBarcodeToImageFile("C:/Identcode-vb.gif")

For advanced generation tutorial, see C#.NET Developer Guide For advanced generation tutorial, see VB.NET Developer Guide