- Home
- Products
- Integration
- Tutorial
- Barcode FAQ
- Purchase
- Company
.NET Barcode GS1 DataBar Generator for .NET, ASP.NET, C#, VB.NET
Index
.NET DataBar Generator - Barcode Introduction
The GS1 DataBar (formerly RSS) family consists of the following versions:
.NET DataBar Generator - Valid Data Scope
How to generate barcode in .NET class?In C#
Linear barcode = new Linear();
barcode.Type = BarcodeType.CODE39;
barcode.Data = "0123456789";
barcode.drawBarcode("C://code39.gif");
In VB.NET
Dim barcode As OnBarcode.Barcode.Linear
barcode = New OnBarcode.Barcode.Linear()
barcode.Type = OnBarcode.Barcode.BarcodeType.CODE39
barcode.Data = "0123456789"
barcode.drawBarcode("C://code39-in-vbnet.gif")
How to create barcode image in ASP.NET aspx or html pages without ASP.NET Barcode Controller?
How to print barcode into image file?In C#
Linear barcode = new Linear();
barcode.Type = BarcodeType.CODE39;
barcode.Data = "0123456789";
barcode.drawBarcode("C://code39.gif");
In VB.NET
Dim barcode As OnBarcode.Barcode.Linear
barcode = New OnBarcode.Barcode.Linear()
barcode.Type = OnBarcode.Barcode.BarcodeType.CODE39
barcode.Data = "0123456789"
barcode.drawBarcode("C://code39-in-vbnet.gif")
In Visual Studio C# and VB.NET, how to draw barcode to the memory?Using C#, please call one of the following methods to draw barcode in the memory
public void drawBarcode(Graphics graphics);
public void drawBarcode(string filename);
public Bitmap drawBarcode();
public void drawBarcode(Stream fileStream);
Using VB.NET, please call one of the following methods to draw barcode in the memory
Public Sub drawBarcode(ByRef graphics As Graphics)
Public Sub drawBarcode(ByVal filename As String)
Public Function drawBarcode() As Bitmap
Public Sub drawBarcode(ByRef fileStream As Stream)
How to create & print barcode using .NET Barcode WinForms Controller?
How to create & print barcode using ASP.NET Barcode Web Form Controller?
.NET DataBar Generator - Barcode Properties
All .NET Barcode Generator Supporting Bar Code Types
|