BizCode Barcode Generator for .NET Ultimate
The most robust & comprehensive barcode generating SDK for Microsoft .NET Framework
Quick Overviews
  • Mature barcode generating SDK
  • Support .NET Framework 2.0/3.0/4.0
  • 100% developed in C#.NET 2.0
  • Dynamic barcodes support
  • User-defined controls provided
How to Create Micro QR Code in C# Library
Micro QR Code is a variant of QR Code 2005 which is used to encode amounts of data in small symbol marking on parts and components. For Micro QR Code symbols, symbol version is ranges from M1 to M4 and error correction level are ranges from L, M to Q.
Micro QR Code Generator for C#.NET is a comprehensive and advanced .NET control library which helps you easily adds barcode generation and printing capabilities into Windows Forms and web applications using C#, VB.NET Managed C++ and Borland Delphi for .NET.
Micro QR Code Generating SDK helps .NET developers to generate high quality Micro QR Code in Windows Forms and ASP.NET applications with great ease. Barcode images could be generated and printed into PEG, GIF, PNG, TIFF and Bitmap formats.
Micro QR Code for .NET Ultimate Features
Valid Character Set Able to encode:
numeric data: 0 - 9;
alphanumeric data: digits 0 - 9; upper case letters A - Z; nine other characters: space, $ % * + - . / : );
byte data
Kanji characters
Error Correction Level Micro QR Code utilizes the Reed-Solomon error correction and allowing recovery of:
- L 7%
- M 15%
- Q 25%
.NET Framework This .NET barcode generator is fully integrated into Microsoft .NET Framework 2.0, 3.0, 3.5 and above version.
Barcode Specification Barcode Specification Created MicroPDF-417 is extremely accurate and should conform to barcode features according to MicroPDF-417 barcode specification in ISO/IEC 24728: 2006
Detailed documentation Compatible with Micro QR Code barcode specification in ISO/IEC 18004:2006
Safe & Secure .NET barcode generator provided are 100% managed code product created in Visual C# .NET 2005 with strong name signatures and signed DLLs
Micro QR Code for .NET Ultimate Requirements
Windows OS
- Microsoft Windows 7
- Windows Server 2008
- Windows Vista
- Windows Server 2003
- Windows XP
Development Environments
- .NET 2.0/3.0/4.0
- Visual Studio 2005/2008/2010
- C#.NET Windows Forms Application
- C#.NET Class and Console Applications
- C#.NET Web Forms
- C#.NET SSRS and Crystal Report
Install Micro QR Code Generator for .NET Winforms
  1. Unzip Barcode Generator for .NET Ultimate package;
  2. Add reference: Add "BusinessRefinery.Barcode.Win.dll" to your .NET Winforms project reference;
  3. Then BusinessRefinery.Barcode.Win.dll is added on your .NET Winforms project.
Install .NET Data Matrix Generator in ASP.NET
  1. Unzip Barcode Generator for .NET Ultimate package;
  2. Add BusinessRefinery.Barcode.Web.dll to you ASP.NET project folder;
  3. Then BusinessRefinery.Barcode.Web.dll is added on your ASP.NET project.
How to Generate Data Matrix Barcode Image Using C# Class In .NET?
Copy those following sample cod to your C#.NET project:
using BusinessRefinery.Barcode;

MicroQRCode barcode = new MicroQRCode();
barcode.Code = "MicroQRCode";
barcode.Resolution = 104;
barcode.Rotate = Rotate.Rotate180;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/microqrcode-csharp.gif");