QR code Barcode Generator for VB.NET
Create, print and draw QR code in VB.NET Class Library using Visual Studio
QR code Barcode Library in Visual Basic.NET - Overview
QR code Barcode generator for VB.NET Library - Benefits
- Provide 6 different data modes to encode QR code.
- Provide 4 levels of error correction for QR code including low, middle, quality and high.
- It is easy to install and integrate barcode QR code generating component into VB.NET developments.
- Flexible sizing options allow customization of X dimension, barcode height, barcode width and image width.
- Draw and print QR code in SQL server reporting service & crystal reports for VB.NET projects.
- Generate high quality QR code in VB.NET class library and console application.
- Produce easy-to-use QR code in Windows Forms Applications for VB.NET.
- Barcode rotate allows 0, 90, 180 or 270 degree changing.
- QR code barcode image can be saved as gif, tiff, png, bmp and jpeg.
- It is completely run in Visual Basic.NET and compatible with 2.0, 3.0 and later versions.
- It is compatible with Visual Studio 2005/2008/2010 in Windows 2000 and advanced operating systems.
- Developer license is royalty free with purchase.
QR Code Barcode Generation Library for .NET Applications
Aspper.com provides complete information of
guideline to generate dynamic QR Code barcodes into .NET applications and report solution using VB.NET Class Library.
Generate QR code in Visual Basic.NET Applications
Installation of QR code Barcode Control in Visual Studio
- Download VB.NET barcode control and unzip it.
- Copy the barcode control dll to the project folder.
- Open visual studio, find the solution explore and reference, right click reference and select add reference, and add the Aspper barcode control dll to reference.
Integrate QR code Barcodes in Visual Basic.NET Class
Add QR code barcode control dll to your VB.NET project reference.
'QR code valid data character set: numeric data, alphanumeric data, byte data and Kanji
Dim barcode As Avapose.Barcode.Encoder.ClassLibrary.BarCode =
New Avapose.Barcode.Encoder.ClassLibrary.BarCode
barcode.Symbology = Avapose.Barcode.Encoder.ClassLibrary.Symbology.QRCode
barcode.QRCodeDataMode = Avapose.Barcode.Encoder.ClassLibrary.QRCodeDataMode.Customer
barcode.Data = "AVAPOSE5025"
barcode.QRCodeVersion = Avapose.Barcode.Encoder.ClassLibrary.QRCodeVersion.V11
barcode.QRCodeECL = QRCodeECL.L;
'QR code barcode size including X dimension, image width, image height,
rotate, resolution are all available for changing, you may adjust the value to generate the specific barcode.
barcode.UOM = Avapose.Barcode.Encoder.ClassLibrary.UnitOfMeasure.Pixel
barcode.X = 1
barcode.BarcodeImageWidth = 175
barcode.BarcodeImageHeight = 50
barcode.Resolution = 72
barcode.Angle = Avapose.Barcode.Encoder.ClassLibrary.Angle.Degree90
barcode.AutoResize = True
'QR code color set includes foreground color, background color, text color.
barcode.ForegroundColor = Color.DarkOrange
barcode.BackgroundColor = Color.Blue
barcode.TextColur = Color.Red
'QR code barcode image may be in gif, tiff, png, bmp and jpeg formats.For example:
barcode.draw(".../qrcode.png")