.NET Barcode Generator
for WinFroms Application in VB.NET
Winforms .NET Barcode Generation DLL
Barcode .NET WinForms > Barcode in .NET WinForms > Data Matrix
2D Barcode in .NET WinForms
Data Matrix in VB.NET
PDF417 in VB.NET
QR Code in VB.NET
Data Matrix .NET Barcode Generator/Library for VB.NET
Generate Data Matrix Image into VB.NET Class Library with barcode control SDK
Data Matrix Barcode Control in VB.NET - Overview
Data Matrix barcode generation library for VB.NET is a robust and professional barcode generation SDK that create Data Matrix in high quality in varies VB.NET applications including VB.NET windows forms, VB.NET class & console library. Data Matrix can be printed or saved as image without the use of fonts in gif, tiff, bmp, png and jpeg formats. Multiple properties settings are provided to create the specific Data Matrix to meet required specifications.

.NET Barcode Generator SDK library includes ASP.NET Barcode Generator, C# Barcode Generator, VB.NET Barcode Generator, QR Code Generator .NET, QR Code Generator ASP.NET, QR Code Generator C#, QR Code Generator VB.NET, Data Matrix .NET, Data Matrix VB.NET, Data Matrix ASP.NET, Data Matrix C#.
It is possible to generate and print most popular dynamic linear and matrix barcodes in Windows Forms applications using VB.NET barcode class library.

Linear barcodes: Code 39,Code 128, EAN-13, GS1-128,UPC-A

2D barcodes: PDF-417,QR Code
Data Matrix Barcode Control/Library for VB.NET - Benefits
Data Matrix Barcode Generation Library for .NET Applications
Aspper.com provides complete information of guideline to generate dynamic Data Matrix barcodes into .NET applications and report solution using VB.NET Class Library.
Generate Data Matrix in Visual Basic.NET Applications

Data Matrix Barcode Library in Visual Baisc.NET - Installation

  1. Download VB.NET barcode control and unzip it.
  2. Copy the barcode control dll to the project folder.
  3. Open visual studio, find the solution explore and reference, right click reference and select add reference, and add the Aspper barcode control dll to reference.

Integrate Data Matrix in Visual Basic.NET Class

'Add Data Matrix barcode control dll to your VB.NET project reference.
Dim barcode As Aspper.Barcode.Encoder.ClassLibrary.BarCode = New Aspper.Barcode.Encoder.ClassLibrary.BarCode
barcode.Symbology = Aspper.Barcode.Encoder.ClassLibrary.Symbology.DataMatrix
barcode.DataMatrixDataMode= Aspper.Barcode.Encoder.ClassLibrary.DataMatrixDataMode.Auto
barcode.Data = "AVAPOSE5023"
barcode.DataMatrixFormatMode = Aspper.Barcode.Encoder.ClassLibrary.DataMatrixFormatMode.FM_26X26
'Data Matrix Barcode Size Related Settings
Data Matrix barcode size including X dimension, image width,
image height, rotate, resolution are all available for changing, you may adjust the value to generate the specific barcode.
barcode.UOM = Aspper.Barcode.Encoder.ClassLibrary.UnitOfMeasure.Pixel
barcode.X = 3
barcode.BarcodeImageWidth = 175
barcode.BarcodeImageHeight = 175
barcode.BarcodeResolution = 72
barcode.Angle = Aspper.Barcode.Encoder.ClassLibrary.Angle.Degree270
barcode.AutoResize = True
'Data Matrix text related settings include text color, text font and whether to show the human-readable text.
barcode.ShowText = True
barcode.TextColor = Color.Black
barcode.TextFont = New Drawing.Font("Arial",10.0F, Drawing.FontStyle.Regular)
Data Matrix Barcode Image Format Set
Data Matrix barcode image may be in gif, tiff, png, bmp and jpeg formats.
barcode.draw(".../datamatrix.png")