.NET Barcode Generator
for WinFroms Application in VB.NET
Winforms .NET Barcode Generation DLL
Barcode .NET WinForms > Barcode in .NET WinForms > PDF417
2D Barcode in .NET WinForms
Data Matrix in VB.NET
PDF417 in VB.NET
QR Code in VB.NET
PDF-417 Barcode Generator/Library for VB.NET
Generate Dynamic PDF-417 and Truncate PDF-417 with Barcode Control for VB.NET
PDF-417 Barcode Generation Control/SDK in VB.NET - Overview
PDF-417 barcode library is a mature and easy-to-use barcode control SDK that is able to generate Data Matrix in various VB.NET applications including VB.NET class & console library and VB.NET windows applications. Without using fonts, Data Matrix is generated as a graphic image in multiple formats such as gif, tiff, bmp, png and jpeg. Once installed in VB.NET, the control is sized and parameters can be set to meet specific requirements.

.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, PDF-417 .NET, PDF-417 VB.NET, PDF-417 ASP.NET, PDF-417 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: Data Matrix,QR Code
PDF-417 Barcode Control for VB.NET - Benefits
PDF-417 Barcode Generation Library for .NET Applications
Aspper.com provides complete information of guideline to generate dynamic PDF-417 barcodes into .NET applications and report solution using VB.NET Class Library.
Generate Dynamic PDF-417 in VB.NET Applications

Installation of PDF-417 Barcode Control in Visual Studio

  1. First, download VB.NET barcode control and unzip.
  2. Then, copy the barcode dll to the project folder. Do not copy to the bin directory; visual studio will do so automatically.
  3. Last, add Aspper barcode control dll to project reference. To achieve this, you should open visual studio, find the solution explore and reference, right click reference and select add reference, add the Aspper barcode control dll to reference.

Integrate PDF-417 Barcodes in Visual Basic.NET Class

PDF-417 Barcode Basic Setting
'PDF-417 valid data character set: all ASCII characters includes standard ASCII
Dim barcode As Aspper.Barcode.Encoder.ClassLibrary.BarCode = New Aspper.Barcode.Encoder.ClassLibrary.BarCode
barcode.Symbology = Aspper.Barcode.Encoder.ClassLibrary.Symbology.PDF417
barcode.PDF417DataMode = Aspper.Barcode.Encoder.ClassLibrary.PDF417DataMode.Auto
barcode.Data = "AVAPOSE.VBNET.BARCODE5024"
barcode.PDF417RowCount = 4
barcode.PDF417ColumnCount = 5;

'PDF-417 barcode sizes including X to Y ratio, 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.PDF417XtoYRatio = 1;
barcode.BarcodeImageWidth = 50
barcode.BarcodeImageHeight = 50
barcode.Angle = Aspper.Barcode.Encoder.ClassLibrary.Angle.Degree
barcode.AutoResize = True

'PDF-417 text related settings include text color, text font and whether to show the human-readable text.
PDF-417 barcode image may be in gif, tiff, png, bmp and jpeg formats.
barcode.ShowText = True
barcode.TextColor = Color.Black
barcode.TextFont = New Drawing.Font("Arial",10.0F, Drawing.FontStyle.Regular)
barcode.draw(".../pdf417.png")