|
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 |
-
Linear
-
GS1 DataBar
- GS1 DataBar [formerly Reduced Space Symbology (RSS)]
-
PDF-417
- PDF417 with EC levels 1 to 8, text and binary encoding.
-
Data Matrix
- Data Matrix with ECC200, ASCII, text, C40 and Base256 encoding, Extended Channel Interpretation and Structured append.
-
QR-Code
- QRCode with structured append, UPS encoding and mode 2-6 support.
|
.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 |
|
.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
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?
-
add BusinessRefinery.Barcode.Win.dll to your .NET Windows Application project reference
-
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?
-
add BusinessRefinery.Barcode.Web.dll to your ASP.NET project reference
-
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
|