.NET Barcode Generator
for Windows Forms Application
Winforms .NET Barcode Generation SDK
Barcode .NET WinForms > Barcode in .NET WinForms
Tutorial
1D/2D .NET Barcode Generator for Winforms Applicaiton Guideline/Tutorial
.NET Barcode Generator/Library for Winforms - Benefits
.NET barcode generation library/SDK totorial for Windows Forms application is a robust control which fully integrated into .NET applications. C# source code and descriptions provided by Aspper.com are apply to .NET Framework 2.0.
Aspper.com helps .NET programmers to generate most popular dynamic linear and 2D barcode images in Windows Forms applications using barcode library for ASP.NET with C# & VB codes.

Code 128,Code 39 EAN-13, GS1-128,UPC-A

Data Matrix,PDF-417,QR Code
Barcode Generator/SDK for Winforms.NET - Developer Guide
In this page, we provide you detail barcode control tutorial of how to use .NET barcode control for Winforms to create linear and 2D barcodes in Winforms.NET. This guide includes:
Aspper.com provides complete information for generate dynamic Linear/2D barcode symbolgoies into .NET applications.

Winforms.NET Barcode Generator in Visual Studio - Installation

  1. Download Aspper Winforms Barcode Trail and unzip it into a dll form.
  2. Copy the Aspper Barcode dll to the project folder of your WinForms applications.
  3. Add Aspper Barcode dll to the project reference.

How to Drag and Drop Barcode Control for Winforms in Visual Studio

  1. Open your Visual Studio and right click in Toolbox.
  2. Select bar choose item; go to .NET Framework Component tab.
  3. Click browse, find the Aspper barcode dll and select it, press ok.
  4. Find the component Barcode Winforms in the Toolbox.
  5. Drag and drop the component to the Form.
  6. Right click on the barcode, select Properties.
  7. Change the properties to generate the required barcodes.

Winforms.NET Barcode Library/SDK - Generating Barcodes in C# Class and VB.NET Class

  1. Open your Visual Studio and find the Solution Explorer.
  2. Right click on the Reference, go to Browse tab.
  3. Select the Barcode Winforms dll and click ok.
  4. Click Toolbox, drag and drop a Button onto your Form.
  5. Double click Button, the page turns to code page.
  6. Or right click Button and choose View code, you will see code page.
  7. Using C# or VB.NET language to encode and generate the specific barcodes.
Using C# to produce barcodes:
BarCode aa = new BarCode();
aa.Symbology = Symbology.QRCode;
aa.Data = " Aspper.Barcode.Winforms.(QRCode123)";
aa.QRCodeVersion = QRCodeVersion.V16;
aa.X = 6;
aa.Angle = Angle.Degree180;
aa.BarcodeImageHeight = 175;
aa.BarcodeImageWidth = 175;
aa.AutoResize = true;
aa.draw("E://qr_code_csharp.gif");
Using VB.NET to integrate barcodes image:
Dim barcode As Aspper.Barcode.Encoder.ClassLibrary.BarCode = New Aspper.Barcode.Encoder.ClassLibrary.BarCode
barcode.Symbology = Aspper.Barcode.Encoder.ClassLibrary.Symbology.QRCode
barcode.Data = " Aspper.Barcode.Winforms.(QRCode123)"
barcode.QRCodeVersion = Aspper.Barcode.Encoder.ClassLibrary.QRCodeVersion.V16
barcode.X = 1
barcode.BarcodeImageHeight = 175
barcode.BarcodeImageWidth = 175
barcode.Angle = Aspper.Barcode.Encoder.ClassLibrary.Angle.Degree90
barcode.AutoResize = True
barcode.draw("E://qr_code_vb.gif")