BizCode Barcode Generator for Winforms
The most mature & flexible barcode generation SDK for .NET Windows Forms
Quick Overviews
  • Professional barcode control
  • Flexible controls provided
  • Support WinForms projects
  • Linear & 2D barcodes support
  • Winforms Data-binding support
How to Generate GS1 DataBar in .NET WinForms Library
GS1 DataBar is also known as Reduced Space Symbology (RSS). It is a linear barcode family which contains continuous, character self-checking and bidirectionally decodable barcodes commonly used in POS, consumer goods manufacturers and healthcare.
GS1 DataBar Generator for Winforms is a robust .NET Control library helps .NET programmers to generate and print GS1 DataBar linear barcodes in Windows Forms applications using Visual C# or VB.NET class library.
GS1 DataBar Generating SDK is fully integrated into C#, VB.NET Managed C++ and Borland Delphi for .NET and other IDEs supported by .NET Framework. It is easy to utilizing .NET application templates in Visual Studio 2005/2008.
GS1 DataBar for .NET Winforms Features
Encodable CharactersSupport to encode:
Numeric data: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
GS1 DataBar Expanded Encodable CharactersUppercase and lowercase letters
Digits, spaces, and 20 selected punctuation characters in addition to the Function 1 Character (FNC 1)
Programming DevelopmentSupport GS1 DataBar generation in .NET Class (C#, VB.NET); .NET Windows Forms Applications and .NET Console Applications
Image & SizeMultiple barcode setting options to customize GS1 DataBar barcode image and size, including module width, image width, color, rotation, resolution through VB or C# sample codes
High-quality ImageGenerate high-quality GS1 DataBar barcode image for all printers. No special printers or hardware are required
Safe & SecureProvide 100% managed code product created in Visual C# .NET 2005 with strong name signatures and signed DLLs
GS1 DataBar for .NET Winforms Requirements
Windows OS
- Microsoft Windows 7
- Windows Server 2008
- Windows Vista
- Windows Server 2003
- Windows XP
Development Environments
- .NET 2.0/3.0/4.0
- C#, VB.NET, Managed C++, Borland Delphi for.NET
- Visual Studio 2005/2008/2010
- .NET Windows Forms Application
- .NET Class and Console Applications
Install GS1 DataBar Generator for .NET Winforms
  1. Download BizCode Generator for Winforms and unzip;
  2. Add reference: Add "BusinessRefinery.Barcode.Win.dll" to your .NET Winforms project reference;
  3. Add to toolbox: To add Barcode Control to your .NET Winforms Web Forms toolbox.
How to Drag & Drop Barcode Control into .NET Winforms projects?
  1. Install .NET Winforms Barcode Control;
  2. Add .NET Winforms Barcode Control onto your .NET Visual Studio Toolbox;
  3. Drag and drop the WinLinearBarcode control into the Forms;
  4. You will see a barcode image generated; more GS1 DataBar barcode setting please see below.
How to Generate EAN-128/GS1-128 with C#, VB.NET Class in .NET Winforms?
Copy those following sample code to your .NET Winforms projects:
using BusinessRefinery.Barcode;

Linear barcode = new Linear();
barcode.Symbology = Symbology.RSS14;
barcode.Code = "00254986210365 ";
barcode.Resolution = 104;
barcode.Rotate = Rotate.Rotate180;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/rss14-csharp.gif");
Dim barcode As BusinessRefinery.Barcode.Linear = 
New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.RSS14
barcode.Code = "00254986210365 "
barcode.Resolution = 104
barcode.Rotate = BusinessRefinery.Barcode.Rotate.Rotate270
barcode.Format = System.Drawing.Imaging.ImageFormat.Gif
barcode.drawBarcode2ImageFile("c:/rss14-vb-net.gif")