BizCode Barcode Generator for Winforms
The most mature & flexible barcode generation SDK for .NET Windows Forms
Quick Overviews
  • Professional barcode control
  • Flexible controls provided
  • Support WinForms projects
  • Linear & 2D barcodes support
  • Winforms Data-binding support
Tutorial to Generate Micro QR Code in .NET WinForms Library
Micro QR Code is a variant of QR Code 2005 with a reduced number of overhead modules and a restricted range of sizes. Micro QR Code has four sizes referred to as Versions M1 to M4. Version M1 measures 11 × 11 modules, Version M2 13 × 13 modules, Version M3 15 × 15 modules, and Version M4 17 × 17 modules.
Micro QR Code Generator for Winforms is a robust .NET Control library easily adds barcode generation and print capabilities into Windows Forms using C#, VB.NET Managed C++ and Borland Delphi for .NET. Free trial package is provided.
Micro QR Code Generating SDK provides flexible barcode options like Image options, Flexible sizing options to customize barcode to meet specific needs. High-quality Micro QR Code barcode can be drawn into JPEG, GIF, PNG, TIFF and Bitmap formats as well as in the memory.
Micro QR Code for .NET Winforms Features
Encodable CharactersEncodable Characters Support to encode:
numeric data (digits 0 - 9);
alphanumeric data (digits 0 - 9; upper case letters A - Z; nine other characters: space, $ % * + - . / : );
byte data (default: ISO/IEC 8859-1; or other sets as otherwise defined);
Kanji characters
Error Correction LevelMicro QR Code employs the Reed-Solomon error correction and allowing recovery of:
- L 7%
- M 15%
- Q 25%
- H 30%
Note: For Micro QR Code symbols, error correction level H is not available
GS1 SystemSupport to encode GS1 compatible Micro QR Code barcodes in .NET Windows Forms applications
User ManualProvides complete sample code and step-by-step instructions over every aspect of Micro QR Code generation in Winforms using VB.NET or C#.NET
Graphic SettingGraphic configuration settings are provided for the foreground and background colors
Safe & SecureProvide 100% managed code product created in Visual C# .NET 2005 with strong name signatures and signed DLLs
Micro QR Code for .NET Winforms 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
- C#, VB.NET, Managed C++, Borland Delphi for.NET
- Visual Studio 2005/2008/2010
- .NET Windows Forms Application
- .NET Class and Console Applications
Install Micro QR Code Generator for .NET Winforms
  1. Download BizCode Generator for Winforms and unzip;
  2. Add reference: Add "BusinessRefinery.Barcode.Win.dll" to your .NET Winforms project reference;
  3. Add to toolbox: To add Barcode Control to your .NET Winforms Web Forms toolbox.
How to Drag & Drop Barcode Control into .NET Winforms projects?
  1. Install .NET Winforms Barcode Control;
  2. Add .NET Winforms Barcode Control onto your .NET Visual Studio Toolbox;
  3. Drag and drop the MicroQRCodeWinForm control into the Forms;
  4. You will see a barcode image generated; more Micro QR Code barcode setting please see below.
How to Generate Micro QR Code with C#, VB.NET Class in .NET Winforms?
Copy those following sample code to your .NET Winforms projects:
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");
Dim barcode As BusinessRefinery.Barcode.MicroQRCode = 
New BusinessRefinery.Barcode.MicroQRCode()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.MicroQRCode
barcode.Code = "MicroQRCode"
barcode.Resolution = 104
barcode.Rotate = BusinessRefinery.Barcode.Rotate.Rotate270
barcode.Format = System.Drawing.Imaging.ImageFormat.Gif
barcode.drawBarcode2ImageFile("c:/microqrcode -vb-net.gif")