BizCode Barcode Generator for Winforms
The most robust & powerful barcode component for Microsoft .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 Data Matrix in .NET WinForms Library
Data Matrix (a.k.a. Data Matrix ECC200) is an alphanumeric two-dimensional barcode symbology, which is made up of light and dark cells (a.k.a. modules). There are six data-encoding modes for data matrix to carry different types of data in ASCII characters (Standard & Extended) appropriately.
Data Matrix Generator for .NET Winforms is a powerful and flexible control. It provides a simple way for users to generate Data Matrix in .NET Windows Forms applications using programming language, such as C#, VB .NET, etc.
Data Matrix Generator .NET Winforms SDK also provides a lot of barcode options like Image options, Flexible sizing options to customize barcode to meet users’ needs. High-quality Data Matrix barcode can be drawn into JPEG, GIF, PNG, TIFF and Bitmap formats as well as in the memory.

Data Matrix Specification - ISO / IEC 16022 (2nd edition 2006-09-15) is pre-configured so that all Data Matrix barcodes are valid and scannable. You can get more specific tutorials here on how to encode Data Matrix, how manipulate Data Matrix barcode image, and how to resize Data Matrix barcode.
Data Matrix Generator for .NET Winforms Features
Encodable CharactersSupport to encode:
- Standard ASCII characters 0-127 (default: ISO/IEC 646)
- Extended ASCII characters 128-255 (default: ISO/IEC 8859-1)
Barcode SpecificationCompatible with Data Matrix barcode specification in ISO; Also support to create GS1 compatible Data Matrix barcodes
Simple to UseEasy to generate & create Data Matrix barcodes via dragging & dropping barcode onto your Windows Forms
Lower ASCII SupportSupport to simply encode functions, such as tabs & returns in Data Matrix barcodes
Detailed documentationProvide detailed documentation, includes source code for the Barcode Image Generator written in Windows Forms
High Quality BarcodeExport high quality graphic images in WMF, BMP, JPG, GIF, PNG and TIF formats or in graphic objects for Windows Forms
Data Matrix Generator 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 Data Matrix 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 WinDataMatrix control into the Forms;
  4. You will see a barcode image generated; more Data Matrix barcode setting please see below.
How to Generate Data Matrix with C#, VB.NET Class in .NET Winforms?
Copy those following sample code to your .NET Winforms projects:
using BusinessRefinery.Barcode;

DataMatrix barcode = new DataMatrix();
barcode.Code = "Data Matrix";
barcode.Resolution = 104;
barcode.Rotate = Rotate.Rotate180;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/data-matrix-csharp.gif");
Dim barcode As BusinessRefinery.Barcode.DataMatrix = 
New BusinessRefinery.Barcode.DataMatrix()
barcode.Code = "Data Matrix"
barcode.Resolution = 104
barcode.Rotate = BusinessRefinery.Barcode.Rotate.Rotate270
barcode.Format = System.Drawing.Imaging.ImageFormat.Gif
barcode.drawBarcode2ImageFile("c:/data-matrix-vb-net.gif")