Developed completely in Visual C#, with full integration into .NET Framework
Create QR Code images in ASP.NET web application and windows application using VB.NET
Print, embed QR Codes in Crystal Reports, SSRS Reporting Services and RDLC Local Reports
QR-Code barcodes generated are readable & compatible with the latest specification
Multiple QR Code barcode settings are adjustable with simple VB.NET programming
Simple to control QR Code image size and shape via Properties Window in VB.NET project
Offer cost-effective developer license for commercial application development
VB.NET 2D QR Code Barcode Introduction
QR-Code, also known as Quick Response Code, Denso Barcode, QRCode, JIS X 0510, ISO/IEC 18004, is a matrix (two-dimensional symbol) symbology initially designed by Denso Wave for the automotive industry. And now it is widely used in various industries for its fast readability and data capacity.
Compatibility: Barcode for .NET component SDK is compatible with ISO/IEC 18004 (Second Edition 2006-09-01) bar code symbology specification.
Encoding: QR-Code bar code can encode multiple types of data, including numeric and alphanumeric characters (A-Z, a-z, 0-9), Kanji characters (JIS X 0510), and byte data (default is ISO/IEC 8859-1, including characters from English, German, French, Italian, Spanish, Portuguese, Dutch, Afrikaans, etc.)
' Set QR Code version (symbol size), available from V1 - V40 qrbarcode.Version = BarcodeLib.Barcode.QRCodeVersion.V1
' Set QR Code Error Correction Level with different recovery ratio, ranging from L(7%), M(15%), Q(25%), H(30%) qrbarcode.ECL = BarcodeLib.Barcode.QRCodeErrorCorrectionLevel.L
' More QR Code barcode settings here, such as ECI, Stuctured Append, image color, rotation, etc
' Save QR Code barcode image into your system qrbarcode.drawBarcode("c:/qrcode-vbnet.png")
' Generate barcode and output to HttpResponse object HttpResponse response = ... qrbarcode.drawBarcode(response)
' Generate barcode and output to Stream object Stream stream = ... qrbarcode.drawBarcode(stream)
Above QR code sample code is written in Visual Basic
How to Create QR-Code Bar Codes in VB.NET ASP.NET Web Applications?
BarcodeLib.com QR Code VB.NET generator supports streaming QR Code barcode images in ASP.NET web in two ways.
VB.NET QR Code barcode generation through BarcodeLib Buildin ASP.NET Barcode Application.
Unzip the downloaded evaluation package, and copy barcode folder and its contents to your IIS folder, eg. C:\inetpub.
Create a new virtual directory in your IIS, name it "barcode", and connect it to the above "barcode" folder in inetpub.
Restart IIS for a QR Code streaming test. Simply navigate to: http://YourDomain:Port/barcode/qrcode.aspx?Data=12345678&LeftMargin=6&RightMargin=6&TopMargin=6&BottomMargin=6
Above is the generated QR Code barcode image. If you need to adjust other QR Code dimensions, please view more web stream URL parameters for QR Code here: .NET QR-Code Generator Property Settings.
You can also insert this QR Code image in your aspx or html page, simply pass the url to IMG tag or src value. For example: <img src=http://YourDomain:port/barcode/qrcode.aspx?Data=12345678&LeftMargin=12&RightMargin=12&TopMargin=12&BottomMargin=12 /> This method will not generate any barcode images in your IIS server side.
VB.NET QR Code barcodes encoding through ASP.NET Web Form Controller.
Intall ASP.NET barcode controller to your barcoding project by adding reference.
Add barcode library to your Visual Studio toolbox.
Open barcode in your unzipped trial package, and copy files "qrcode.aspx", "qrcode.aspx.cs" to the aspx page where you will be generating QR Code images.
Now you can drag QRCodeASPNET to your ASP.NET web site, and change QR code settings through properties window on the right.
Run the project and a QR Code barcode is generated on your aspx pages.
Or you may directly generate QR Code barcodes using above Free demo VB.NET code for your ASP.NET applications.
How to Draw QR-Code Images in VB.NET Windows Applications?
Add reference to BarcodeLib.Barcode.WinForms.dll to your barcoding project.
BarcodeLib.Barcode.WinForms.dll to your Visual Studio toolbox.
You can simply drag the QRCodeWinForm to your windows form, and a QR Code barcode is generated.
Or you may directly create QR Code barcodes using above Free demo VB.NET code for your .NET Windows Forms applications.