BizCode Barcode Generator for .NET Ultimate
The most robust & powerful barcode generating SDK for Microsoft .NET Framework
Quick Overviews
  • Powerful barcode creating DLL
  • Completely run in VB.NET
  • 100% sample code provided
  • Multiple barcode formats
  • Full controls provided
How to Generate Micro QR Code in VB.NET Library
Micro QR Code is a very small QR Code barcode that fits applications that require a smaller space and use smaller amounts of data, such as ID of printed circuit boards and electronics parts, etc. Like standard QR Code, Micro QR Code is capable of encoding all types of data, such as numeric and alphabetic characters, Kanji, Kana, Hiragana, symbols, binary, and control codes.
Micro QR Code Barcode Control for Viusal Basic.NET is a robust and reliable barcode generation component DLL that developed in C#.NET in .NET framework 2.0, 3.0, 3.5 and 4.0. It is a dynamic DLL that supports barcode generation in various Visual Basic.NET programs including Windows Forms, ASP.NET, class library, console application, crystal report, etc.
With barcode control SDK for VB.NET, users have full control of every aspect of barcode images. Users can easily customize Micro QR Code properties like Version, Error Correction Level, Micro QR Code size, rotation, resolution in dpi and other properties with detail guide with VB.NET coding.
Micro QR Code Generator for VB.NET Features
Encodable Characters Support to encode:
- Numeric characters
- Alphanumeric data
- Byte characters
- Kanji characters
Programming Developments Easily and completely run in Visual Basic .NET for .NET 2.0, 3.0, 3.5 and 4.0
Micro QR Code Version Support to generate Micro QR Code with four versions ranges from Version 1 to Version 4
Small Size The generated Micro QR Code can be small enough to print on circuit boards and electronics parts without the size increasing but data increased
High Quality Support to generate Micro QR Code with high quality without scanning trouble
.NET Tech Compatibility Completely developed in C#.NET and compatible with any .NET language environment such as Visual Basic.NET, Managed C++ and Borland Delphi for .NET
Micro QR Code Generator for VB.NET 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
- VB.NET Windows Forms Application
- VB.NET Class and Console Applications
- VB.NET Web Forms
- VB.NET SSRS and Crystal Report
Install .NET Micro QR Code Generator in VB.NET
  1. Unzip Barcode Generator for .NET Ultimate package;
  2. Add BusinessRefinery.Barcode.Win.dll to your Winforms project folder;
    (The DLL will be copied to the bin directory automatically)
  3. Then BusinessRefinery.Barcode.Win.dll is added on your .NET Winforms project.
Install .NET Micro QR Code Generator in VB.NET
  1. Unzip Barcode Generator for .NET Ultimate package;
  2. Add BusinessRefinery.Barcode.Web.dll to you ASP.NET project folder;
    (The DLL will be copied to the bin directory automatically)
  3. Then BusinessRefinery.Barcode.Web.dll is added on your ASP.NET project.
How to Generate Micro QR Code Barcode Image Using VB.NET Class in .NET?
Copy those following code to your VB.NET projects:
Dim barcode As BusinessRefinery.Barcode.QRCode = 
New BusinessRefinery.Barcode.QRCode()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.MicroQRCode
barcode.Code = "Micro-QR-Code"
barcode.Resolution = 72
barcode.Rotate = BusinessRefinery.Barcode.Rotate.Rotate270
barcode.Format = System.Drawing.Imaging.ImageFormat.Png
barcode.drawBarcode2ImageFile("c:/microqrcode-vb-net.png")