C#, VB.NET Barcode Generator, Generating Linear, PDF417, Data Matrix and QR-Code

Home  >  Barcode Components  >  C#, VB.NET Barcode Generator for Data Matrix, PDF 417, QR Code, GS1 DataBar, Code 128, & Code 39

 

.NET Barcode for Windows Forms

.NET Barcode Generation in C#, VB.NET Windows Applications


.NET Barcode for Windows Forms is a .NET Control library package that generates 1D (Linear) & 2D (Matrix) barcodes in .NET Windows Applications.

.NET Barcode for Windows Forms supports 30+ linear & 2D barcode generation in various Visual Studio C#, VB.NET development environments, including :

  • .NET Class (C#, VB.NET, J#)
  • .NET Windows Forms Applications
  • .NET Console Applications




.NET Barcode for Windows Forms Package Overview
 

 

.NET, C#, VB.NET Windows Form Barcode Generator Features and Benefits

  • Royalty free with Developer License purchased.

  • .NET class libraries (in C#) are provided for integration in C#, VB.NET windows applications.

  • High quality images with GIF, PNG, JPEG, & BMP support without any distortion.

  • Automatic checksum digit calculations can be enabled and disabled for many linear symbologies.

  • .NET 2.0, 3.0, 3.5 and above is supported.

  • Orientation may be set to 0, 90, 180, or 270 degrees.

  • Fully customizable barcode sizes. Allow to change barcode X, Y dimensions, wide to narrow ratio, barcode image width & height, image left, right, top, bottom margins.

  • Orientation may be set to 0, 90, 180, or 270 degrees.

  • Text style options allow the human readable characters to be displayed or hidden.

  • Supplemtns 2 & 5 digits are supports for UPC-A, UPC-E, EAN 8, EAN 13, ISBN, ISSN.

  • USPS Intelligent Mail Barcode (Onecode) is supported as well as POSTNET, PLANET, RM4SCC, EAN128.

  • GS1 Package supports GS1-128 (EAN-128), ITF-14, DataBar, Data Matrix, & QR-Code.

  • Bearer bars for ITF-14 may be displayed or hidden.

  • Source code is provided for all .NET Class, C#, VB.NET Windows Forms applications (in C# 2005).

 

.NET Barcode for Windows Forms - Download

Download Instructions
.NET Barcode for Windows Forms Evaluation Package
  1. Download the SDK
  2. Unzip it

For demo version only, we randomly print "BusinessRefinery.com" message on the barcode image.
 

.NET Barcode for Windows Forms - License & Price

  • .NET Barcode for Windows Forms - Linear Barcode - 1 Developer License - USD 299
  • .NET Barcode for Windows Forms - Linear Barcode - 5 Developer License - USD 799
  • .NET Barcode for Windows Forms - Linear Barcode - Corporate Developer License - USD 1299
  • .NET Barcode for Windows Forms - Linear + 2D Barcode - 1 Developer License - USD 459
  • .NET Barcode for Windows Forms - Linear + 2D Barcode - 5 Developer License - USD 1199
  • .NET Barcode for Windows Forms - Linear + 2D Barcode - Corporate Developer License - USD 1999
 

.NET Barcode Generator for Windows Forms Applications - C#, VB.NET Barcode Generation FAQ



1. How to generate barcodes in C# Class?

   using BusinessRefinery.Barcode;

   // construct a linear barcode object
   Linear barcode = new Linear();  
    
   // set linear barcode symbolgoy to code-128
   barcode.Symbology = Symbology.CODE128;
    
   // set code-128 code text to encode		      
   barcode.Code = "9876543210";  
    
   //draw barcode and save into image file in gif format   
   barcode.drawBarcode("C://code-128-in-csharp.gif");    

2. How to generate barcodes in VB.NET Class?

// construct a linear barcode object
Dim barcode As BusinessRefinery.Barcode.Linear
barcode = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbolgoy to code-128
barcode.Symbology = BusinessRefinery.Barcode.Symbology.CODE128

// set code-128 code text to encode	
barcode.Code = "0123456789"

//draw barcode and save into image file in gif format  
barcode.drawBarcode("C://code-128-in-vbnet.gif")


3. How to draw barcodes to image files (GIF, JPEG, BMP, PNG, & TIFF)?

            using BusinessRefinery.Barcode;

            Linear barcode = new Linear();
            barcode.Symbology = BarcodeType.CODE128;
            barcode.Code = "9876543210";
            barcode.drawBarcode("C://code-128-in-csharp.gif");

You can draw other file formats, by change file types to .jpg, .bmp, .png, and .tif.



4. How to draw & print barcodes to .NET objects like Graphics, Stream, Bitmap?

            using BusinessRefinery.Barcode;

            Linear barcode = new Linear();
            barcode.Symbology = BarcodeType.CODE128;
            barcode.Code = "9876543210";

            barcode.drawBarcode2Stream("Stream object");

            Bitmap barcodeInBitmap = barcode.drawBarcode();

            barcode.drawBarcodeOnGraphics("Graphics object");



5. How to create barcodes in .NET Windows Application using .NET Barcode Generator Windows Control Library?

  1. add BusinessRefinery.Barcode.Win.dll to your .NET Windows Application project reference
  2. add .NET Barcode Generator .NET Windows Control Library to .NET Visual Studio Toolbox



6. How to create barcodes in ASP.NET Web Application using ASP.NET Barcode Generator Web Control Library?

  1. add BusinessRefinery.Barcode.Web.dll to your ASP.NET project reference
  2. add ASP.NET Barcode Generator ASP.NET Web Control Library to .NET Visual Studio Toolbox



.NET Barcode Generator | C# Barcode Generator | ASP.NET Barcode Generator | VB.NET Barcode Generator



ALL RIGHTS RESERVED. Business Refinery (c) 2006 - 2010. Terms of Use | Privacy Policy