Micro QR Code VB.NET Generator Library SDK
How to create, draw barcode Micro QR Code images in VB .NET Web & WinForms application
"Thanks for your great work! For me, the most significant thing is that our users are really impressed with our .NET project."
- Vasko Klasevski, Australia
Generate 2D barcode Micro QR Code images in Visual Basic .NET with complete sample VB.NET source code
VB.NET Micro QR Code Generator Control Introduction

Top
Micro QR code is a very small QR Code for applications that require a smaller space and use smaller amounts of data. The efficiency of data encoding has been improved by using only one position detection pattern.
Developers can generate 2D barcode Micro QR Code images using
Micro QR Code VB.NET Barcode Generator for some .NET Framework applications, such as .NET Class Library, ASP.NET Web, .NET Windows Forms, .NET Reporting Services (SSRS), Client RDLC Reports and Crystal Reports, etc. This mature VB.NET Generator Library (DLL) can be quickly installed with a single
.NET Barcode SDK. OnBarcode.com also provides users with detailed
VB.NET Micro QR Code settings document and complete demo for Micro QR Code barcode generation in VB.NET provided in this article.
Other Micro QR Code Barcode Generator Components & Libraries
For different barcode generation request, OnBarcode.com provides specific Micro QR Code Bar Code Generator Libraries:
Micro QR Code in .NET,
Micro QR Code for ASP.NET Web,
Micro QR Code for .NET Windows Forms.
How to Generate and Print Micro QR Code Barcodes Using VB.NET Class

Top
Below is the Visual Basic.NET sample code for Micro QR Code barcode generation:
Imports OnBarcode.Barcode
Dim Micro_QRCode As MicroQRCode = New MicroQRCode
' Encodable character set:
' 1) numeric data (digits 0 - 9);
' 2) alphanumeric data (digits 0 - 9; upper case letters A -Z; nine other characters:
' space, $ % * + - . / : );
' 3) byte data (default: ISO/IEC 8859-1; or other sets as otherwise defined (see 6.3.4));
' 4) Kanji characters. Kanji characters in QR Code 2005 can be compacted into 13 bits.
Micro_QRCode.Data = "123456789"
Micro_QRCode.DataMode = QRCodeDataMode.Numeric
' Micro QR Code Image Size Related Settings
Micro_QRCode.Version = MicroQRCodeVersion.M2_L
Micro_QRCode.UOM = UnitOfMeasure.PIXEL
Micro_QRCode.X = 4
Micro_QRCode.LeftMargin = 8
Micro_QRCode.RightMargin = 8
Micro_QRCode.TopMargin = 8
Micro_QRCode.BottomMargin = 8
Micro_QRCode.BarcodeHeight = 70
Micro_QRCode.BarcodeWidth = 70
'Other Related Settings
Micro_QRCode.Rotate = Rotate.Rotate0
Micro_QRCode.Resolution = 72
' Image format setting
Micro_QRCode.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif()
Micro_QRCode.drawBarcode("c://micro-qr-code.gif")
VB.NET Barcode Generators Demo Source Codes

Top
Barcode Control for VB.NET - Bar Code Type Generation