.NET Barcode for (.NET Barcode Generator supports Linear, PDF417, Data Matrix and QR-Code)

Home  >  Barcode Components  >  .NET Barcode for WinForms  >  C# Barcode Generation Guide to Create Barcodes in .NET Windows Forms

C# Barcode Generator Guide

C# Barcode Generation in QR-Code, Data Matrix, PDF-417, Code128, & Code-39


BusinessRefinery provides 3 mature .NET Barcode Generation Components for C#.NET projects:

.NET Barcode for ASP.NET - enable barcode generation in C# class, C# console applications, and C# ASP.NET web projects.

.NET Barcode for Windows Forms - enable barcode generation in C# class, C# console applications, and C#.NET Windows applications.

.NET Barcode Ultimate - integrates all features in the above two controls.



C# Barcode Generation - 1D & 2D Barcode Symbology Types



C# Barcode Generation Guide - FAQ

1. How to generate barcodes in C#.NET Class?

            using BusinessRefinery.Barcode;

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



2. How to create barcodes to image files?

            using BusinessRefinery.Barcode;

            Linear barcode = new Linear();
            barcode.Type = BarcodeType.CODE128;
            barcode.Data = "9876543210";
            barcode.drawBarcode("C://code-128-in-csharp.png");
You can create barcodes to PNG, GIF, JPEG, & BMP image formats



3. How to create barcodes in C#.NET Windows Application using .NET Barcode Generator Windows Control Library?

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



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

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



5. How to generate barcodes in ASP.NET Web Application using .NET Barcode Generator Streaming Functions?

  1. Under evaluation package, copy the whole barcode folder with contents to your IIS web server, and create a new virtual directory named "barcode".
  2. Restart IIS web server, open your web browser and navigate to http://project-url/barcode/linear.aspx?code=0123456789&symbology=7
  3. To create barcode image to your html or aspx pages, you can insert an image tag (img) into your web page.
    For example, <img src="ttp://project-url/barcode/linear.aspx?code=0123456789&symbology=7" />







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