Micro PDF417 VB.NET Generator Library DLL
How to generate, print 2d Micro PDF417 barcode images in Visual Basic .NET application
"Thanks for your great work! For me, the most significant thing is that our users are really impressed with our .NET project."
- Vasko Klasevski, Australia
Generate barcode Micro PDF-417 images in Visual Basic .NET with complete sample VB.NET source code
VB.NET Micro PDF-417 Generator Control Introduction

Top
MicroPDF417 is a multi-row 2d barcode type which may be utilized by applications needing to encode a moderate amount of data in a two-dimensional symbol (up to 150 bytes, 250 alphanumeric characters, or 366 numeric digits), and when minimizing symbol size is a primary concern. It is identical to PDF417 in terms of its encoding modes, error correction method, and symbol character sets.
It is a simple task to generate 2D barcode Micro PDF417 images using
Micro PDF417 VB.NET Barcode Generator for various .NET applications, including .NET Class, ASP.NET Web, Windows Forms, SQL Server Reporting Services, RDLC Reports and Crystal Reports, etc. This mature VB.NET Generator Library is easy to be installed with a single
.NET Barcode SDK. OnBarcode.com provides users with detailed
VB.NET Micro PDF417 settings document and complete demo for Micro PDF-417 barcode generation in VB.NET provided in this article.
Related Micro PDF417 Barcode Generator Controls & SDKs
To fulfill different barcode generation request, OnBarcode.com also designs these Micro PDF417 Bar Code Generation Libraries:
Micro PDF417 in .NET,
Micro PDF417 in ASP.NET,
Micro PDF417 in .NET WinForms.
How to Create and Make Micro PDF417 Barcodes Using VB.NET Class

Top
To generate Micro PDF-417 barcodes in VB.NET applications, please use the following sample code:
Imports OnBarcode.Barcode
Dim Micro_PDF417 As MicroPDF417 = New MicroPDF417
'Micro PDF417 Barcode Basic Settings
' GS1 DataBar (RSS family) valid data character set:
' 1) Text Compaction mode permits all printable ASCII characters to be encoded, i.e.
' values 32 to 126 inclusive in accordance with ISO/IEC 646, as well as.
' selected control characters.
' 2) Byte Compaction mode permits all 256 possible 8-bit byte values to be encoded. This
' includes all ASCII characters value 0 to 127 inclusive and provides for international
' character set support.
' 3) Numeric Compaction mode permits efficient encoding of numeric data strings.
Micro_PDF417.DataMode = PDF417DataMode.Text
Micro_PDF417.Data = "OnBarcode"
' Barcode Size Related Settings
Micro_PDF417.UOM = UnitOfMeasure.PIXEL
Micro_PDF417.X = 4
Micro_PDF417.XtoYRatio = 0.3333333F
Micro_PDF417.BarcodeHeight = 108
Micro_PDF417.BarcodeWidth = 340
Micro_PDF417.Version = MicroPDF417Version.Version_3X08
Micro_PDF417.LeftMargin = 4
Micro_PDF417.RightMargin = 4
Micro_PDF417.TopMargin = 4
Micro_PDF417.BottomMargin = 4
Micro_PDF417.Resolution = 96
Micro_PDF417.Rotate = Rotate.Rotate0
'Other Related Settings
Micro_PDF417.Rotate = Rotate.Rotate0
Micro_PDF417.Resolution = 72
' Image format setting
Micro_PDF417.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif()
Micro_PDF417.drawBarcode("c://micro-pdf-417.gif")
VB.NET Barcode Generators Demo Source Codes

Top
Barcode Control for VB.NET - Bar Code Type Generation