.NET Windows Forms Bar Code Tutorial & Guide

Install .NET WinForms Barcode control & create 1D/2D barcodes in .NET projects

Barcode for .NET
.NET Imaging Component
Home > Barcode in .NET
.NET Forms Barcode Generator is a barcode creating control which is able to create more than twenty 1D/2D barcodes for any .NET framework applications. This .NET Windows Forms barcode control is completely developed in managed C#.NET. You are able to create linear and two dimensional barcodes with VB.NET, managed C++ and Delphi for .NET as well as C#. Both C# and VB.NET code sample for barcode creating are available with the .NET WinForms barcode control.
Related .net document control helps:
asp.net edit pdf page using c#: ASP.NET PDF Pages Edit Control: add, remove, sort, replace PDF pages online using C#
c# asp.net image viewer: ASP.NET Image Viewer Control(MVC & WebForms): view, annotate, redact, convert image files in html, JQuery
asp.net sharepoint document viewer open source: ASP.NET SharePoint Document Viewer: view, annotate, redact documents in SharePoint
c# asp.net pdf editor: EdgePDF: ASP.NET PDF Editor Web Control: Online view, annotate, redact, edit, process, convert PDF documents
asp.net edit pdf text using c#: ASP.NET PDF Text Edit Control: online edit PDF text content using C# ASP.NET
asp.net mvc pdf editor using c#: ASP.NET MVC PDF Viewer & Editor: view, annotate, redact, edit PDF document in C# ASP.NET MVC
c# asp.net dicom viewer: ASP.NET Dicom Document Viewer Control: view, annotate dicom imaging files online in ASP.NET
Install .NET Windows Forms barcode component
Rasteredge .NET Forms barcode generating control is an easy barcode printing method in any .NET framework apps. It is able to create barcode images that can be saved to a file or sent to a printer directly. To install the .NET Windows Forms barcode component, please refer to the following steps;
Create barcodes in .NET app using the .NET Forms control

Create barcode via Drag and Drop tool

To create linear and two dimensional barcodes on .NET Windows Forms directly, you can follow these procedures:

Generate Barcodes in .NET apps using C#

using Rasteredge.WinForms.Barcode;

// construct a linear barcode object

Linear winformsean13 = new Linear();


// set linear barcode symbology to be EAN13

winformsean13.Symbology = Symbology.EAN13;


// set EAN-13 code text to encode

winformsean13.Code = "01234567890";


//draw barcode and save into image file in gif format

winformsean13.drawBarcode2ImageFile("ean13-in-winformscsharp.gif");

Display Barcodes with VB.NET with the .NET Forms control

' construct a linear barcode object

Dim winformsean13 As Rasteredge.Barcode.Linear

winformsean13 = New Rasteredge.Barcode.Linear()


' set linear barcode symbology to be EAN13

winformsean13.Symbology = Rasteredge.Barcode.Symbology.EAN13


' set EAN-13 code text to encode

winformsean13.Code = "01234567890"


' draw barcode and save into image file in gif format

winformsean13.drawBarcode2ImageFile("ean13-in-winformsvb.gif")