Generate GS1-128 in .NET Windows Forms

Create GS1-128 barcodes in .NET with Windows Forms barcode control

Barcode for .NET
.NET Imaging Component
Home > Barcode in .NET > Linear > EAN 128
Bar Code Generator for .NET Windows Forms is a barcode generating component that is able to generate GS1-128 barcodes for any .NET framework applications. This .NET GS1-128 Windows Forms barcode control is completely developed in managed C#.NET. You are able to create the GS1-128 barcodes with VB.NET, managed C++ and Delphi for .NET as well as C#. Both C# and VB.NET code sample for GS1-128 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 edit pdf image using c#: ASP.NET PDF Image Edit Control: online insert, edit PDF images in C#
asp.net edit pdf page using c#: ASP.NET PDF Pages Edit Control: add, remove, sort, replace PDF pages online using C#
GS1-128, (a.k.a. UCC-128/EAN-128), is a barcode standard that defines both the type of data and the data format. GS1-128 uses the Code 128 barcode symbology with a flagging character (Function Code 1 (FNC1)) and Application Identifiers (AI's), which defines the meaning of data. The GS1-128 provides a global standard for exchanging data between different companies.
Benefits of GS1-128 Generator for .NET WinForms
Create GS1-128 Barcodes with the .NET Windows Forms barcode component
It is an easy GS1-128 barcode printing method in any .NET framework applications by using Rasteredge .NET Forms barcode generating control. It is able to create GS1-128 barcode images that can be saved to a file or sent to a printer directly. To create GS1-128 barcode images, please download the .NET Windows Forms barcode component and install it on your project.

Installation of .NET Windows Forms barcode control in VS

Create GS1-128 Barcodes with .NET WinForms Barcode control in C#

using Rasteredge.WinForms.Barcode;

// construct a linear barcode object

Linear winformsean128 = new Linear();


// set linear barcode symbology to be ean128

winformsean128.Symbology = Symbology.ean128;


// set ean128 code text to encode

winformsean128.Code = "01234567890";


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

winformsean128.drawBarcode2ImageFile("ean128-in-winformscsharp.gif");

Print GS1-128 Barcodes with .NET WinForms Barcode control in Visual Basic .NET

' construct a linear barcode object

Dim winformsean128 As Rasteredge.Barcode.Linear

winformsean128 = New Rasteredge.Barcode.Linear()


' set linear barcode symbology to be ean128

winformsean128.Symbology = Rasteredge.Barcode.Symbology.ean128


' set ean128 code text to encode

winformsean128.Code = "01234567890"


' draw barcode and save into image file in gif format

winformsean128.drawBarcode2ImageFile("ean128-in-winformsvb.gif")