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#.
Data Matrix Barcode Control/Library for VB.NET - Benefits
- Provide 8 data modes to encode all ASCII characters.
- The Data Matrix symbology ranges from 8x8 to 144x144.
- It is compatible with GS1 standard and ISO/IEC 16022 standard.
- It is easy to install and integrate barcode Data Matrix generating component into VB.NET developments.
- Draw and print Data Matrix in SQL server reporting service & crystal reports for VB.NET projects.
- Generate high quality Data Matrix in VB.NET class library and console application.
- Produce excellent Data Matrix in Windows Forms Applications for VB.NET.
- Flexible sizing options allow the adjustment of X dimension, barcode height, encoding mode and image width.
- Barcode rotate allows 0, 90, 180 or 270 degree changing.
- Data Matrix barcode image can be saved as gif, tiff, png, bmp and jpeg.
- It is completely run in Visual Basic.NET and compatible with 2.0, 3.0 and later versions.
- It is compatible with Visual Studio 2005/2008/2010 in Windows 2000 and advanced operating systems.
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
- Download VB.NET barcode control and unzip it.
- Copy the barcode control dll to the project folder.
- 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")