Home  >  Products  >  .NET Barcode Suite  >  .NET Barcode for C#, VB.NET on Windows Forms


[Download]     [Generation Guide]     [License & Price]

.NET Barcode for Windows Forms

.NET Barcode for WinForms offers the most affordable ASP.NET barcode generator for barcode ASP.NET professionals.

ASP.NET Barcode Generator

ASP.NET Barcode supports 70+ linear (1d) and matrix (2d) barcode standards:

.NET Barcode Compatibility

ASP.NET Barcode is purely written in .NET C#. And it supports ASP.NET web application environment.
ASP.NET Barcode library can be used in all major Windows operating systems, which supports .NET 2003 or later version.
ASP.NET barcode generated images are also compatible with all major web browsers, like Internet Browser, Firefox, Apple Safari, Google Chrome.

.NET Barcode in ASP.NET website

ASP.NET Barcode is easily to be integrated into .NET developer's asp.net website projects.
ASP.NET developers can generate barcode image through ASP.NET design console or runtime classes.

C# Barcode

C# Barcode is easily to be integrated into C#.NET developer's C# projects.
C# developers can generate barcode image through C#.NET design console or runtime class.

VB.NET Barcode

VB.NET Barcode is easily to be integrated into VB.NET developer's VB.NET projects.
VB.NET developers can generate barcode image through VB.NET design console or runtime class.

.NET Barcode in .NET Reporting

.NET Barcode does support two most popular .NET reporting system, Microsoft SQL Server Reporting Service and Crystal Reports. For Reporting Service developers, you can embed barcode generating feature in your report template through our .NET barcode library.
You can generate barcode image through design console or runtime class.
For Crystal Reports for .NET developer, you can generate barcode image in runtime class only.


.NET Barcode for WinForms - Download Free Trial Version

Download Free .NET Barcode for WinForms trial Package
 

.NET Barcode for Windows Forms - Licenses & Prices

Developer License 5-Developer License Site Developer License
Linear Package
includes: Code39, Code128, UPC, EAN, and other linear symbologies
$ 750 $1550 $2650
2D + Linear Package
includes: Data Matrix, PDF417, QRCode and Linear barcodes
$1050 $2050 $3550




.NET Barcode Generator - How to generate barcodes in C# Class?

The following C# .NET code illustrates how to generate a barcode in C# class:

using KeepDynamic.Barcode.Generator;

// Create linear barcode object in C#
BarCode barcode = new BarCode();

// Set barcode symbology type to Code-39 in C#
barcode.SymbologyType = SymbologyType.Code39;

// Set Code39 barcode value in C#
barcode.CodeText = "CODE39";

// Set Code39 drawing image format to PNG in C#
barcode.Format = ImageFormat.Png;

// Generate Code-39 barcode & encode to the png image in C#
barcode.drawBarcode("C://barcode-code39-csharp.png");
  
// Generate Code-39 barcode & print to System.Drawing.Graphics object in C#
barcode.drawBarcode("Graphics object");
 
// Create Code-39 barcode & draw to System.IO.Stream object in C#
barcode.drawBarcode("Stream object");




.NET Barcode Generator - How to create barcodes in VB.NET Class?

The following VB.NET code illustrates how to generate a barcode in VB.NET class:

// Create linear barcode object in VB.NET
Dim barcode As KeepDynamic.Barcode.Generator.BarCode
barcode = New KeepDynamic.Barcode.Generator.BarCode()

// Set barcode symbology type to Code-39 in VB.NET
barcode.SymbologyType = SymbologyType.Code39;

// Set Code39 barcode value in VB.NET
barcode.CodeText = "CODE39"

// Set Code39 drawing image format to PNG in VB.NET
barcode.Format = ImageFormat.Png

// Generate Code-39 barcode & encode to the png image in VB.NET
barcode.drawBarcode("C://barcode-code39-vbnet.png")
  
// Generate Code-39 barcode & print to System.Drawing.Graphics object in VB.NET
barcode.drawBarcode("Graphics object")
 
// Create Code-39 barcode & draw to System.IO.Stream object in VB.NET
barcode.drawBarcode("Stream object")


How to create barcodes in Windows Forms Applications

To create linear & 2D barcodes in Windows Forms applications, do the following procedures:

  • Add KeepDynamic.BarCode.Windows.dll to your C#, VB.NET project reference

  • Add KeepDynamic.BarCode.Windows.dll to windows project toolbox

  • Drag one of the BarCodeControl, DataMatrixControl, PDF417Control, QRCodeControl item to your windows forms


How to create barcodes in ASP.NET Web Forms Projects

To create linear & 2D barcodes in ASP.NET Web Forms applications, do the following procedures:

  • Add KeepDynamic.BarCode.AspNet.dll to your C#, VB.NET project reference

  • Add KeepDynamic.BarCode.AspNet.dll to windows project toolbox

  • Drag one of the BarCodeControl, DataMatrixControl, PDF417Control, QRCodeControl item to your ASP.NET Web form pages, in your ASP.NET design view