- Totally compatible with .NET Visual Studio 2005/2008/2010 versions
- Barcode component dlls for ASP.NET web application and WinForms application
- Completely designed in C# code for Identcode barcode generation in .NET platform
- Simple and quick to print Identcode images in .NET using C# or VB.NET class
- Create various 1D and 2D barcode types such as GS1 128, EAN-13, QR Code, PDF-417, etc
- Automatically calculate and add checksum for Identcode barcode images
- All inserted Identcode barcode images can be printed by both high and low resolution printers
- Royalty free with purchase of perpetual developer licenses
As one of the easiest barcode generation methods, Identcode Barcode Control is often used to implement various barcode types in Visual Studio for .NET application. Users can create linear and matrix barcodes in many platforms, like Windows Control Application, ASP.NET Web Application, C# and VB.NET Class Library, etc.
barcode scanner sdk vb.net,
how to print barcode in vb.net 2008,
generate barcode c#.net,
open source barcode reader library c#,
barcode generator in c# windows application free,
barcode reader mvc c#
Users can create Identcode with C# or VB.NET. Moreover, those two kinds of sample codes are provided by KeepAutomation for users.
Identcode Overview in .NET Generator
Identcode, also named as DHL Identcode and Deutsche Post Identcode, is a linear numeric digits barcode symbology. And this barcode type can encode 11 digits excluding the checksum digit. Like Leitcode, it is also an implementation of Interleaved 2 of 5 and used by German Post for mail routing.
Identcode Barcode Data in .NET Control DLL
- Numeric digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
Identcode Generation in .NET Control
How to Drag Identcode Barcode Class Library to .NET Project
1.
Create a new project in Visual Studio, right-click "Components" in toolbox, then select "Choose Items..."
2.
Click "Browse...", choose "KeepAutomation.Barcode.Web.dll" or "KeepAutomation.Barcode.Windows.dll", and then click "Open"
3.
Now, drag "BarCodeControl" to web or windows form for barcode generation (default barcode is Code 128)
4.
Revise the default barcode type to "Identcode" and property values in the "Properties", then click the generated barcode image
How to Create Identcode in C# or VB.NET Programming
With C# or VB.NET sample code below, users can easily implement Identcode barcode images in Visual Studio for ASP.NET web application and .NET Windows Forms application.
using KeepAutomation.Barcode.Bean;
BarCode identcode= new BarCode();
identcode.Symbology= KeepAutomation.Barcode.Symbology.Identcode;
identcode.CodeToEncode = "01234567891";
identcode.WideNarrowRatio = 2.5f;
identcode. Y=60;
identcode.generateBarcodeToImageFile("C://identcode-csharp.png");
Dim identcode As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
identcode.Symbology= KeepAutomation.Barcode.Symbology.Identcode
identcode.CodeToEncode = "01234567891"
identcode.WideNarrowRatio = 2.5f;
identcode. Y=60
identcode.ImageFormat = System.Drawing.Imaging.ImageFormat.Png()
identcode.generateBarcodeToImageFile("C://identcode-vb-net.png")
How to Create Identcode with Wide to Narrow Bar in .NET
Wide Bar to Narrow Bar Ratio (N) is designed to accurately decode the encoded information of Identcode barcode. Users are entitled to use C# or VB.NET class to modify the wide to narrow bar ratio in Visual Studio for .NET application. And value of the ratio can ranges from 2 to 3.
identcode. WideNarrowRatio = 2.5f;
identcode. WideNarrowRatio = 2.5f
How to Create Identcode with Wide to Narrow Bar in .NET
1.
Unzip the evaluation package, copy "barcode" folder to IIS and create a new virtual directory named "barcode"
2.
Restart the IIS, and navigate to "http://localhost/barcode/barcode.aspx?code-to-encode=01234567891&symbology=25"
3.
If necessary, please make adjustments for the generated barcode image in the url with the http parameters
4.
To insert the created Identcode images in html or aspx pages, just copy <img src="http://localhost/barcode/barcode.aspx?code-to-encode=01234567891&symbology=25"/> into your web pages