BizCode Barcode Generator for Winforms
The most advanced & flexible barcode generation SDK for .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 MicroPDF417 in .NET WinForms Library
MicroPDF417 is a multi-row barcode symbology which is able to encode a moderate amount of data in a two-dimensional symbol. Each MicroPDF417 symbol consists of a stack of vertically-aligned rows (with a minimum of 4 and maximumof 44 rows); the allowable numbers of rows are specified separately for each of the one-, two-, three- or four column versions.
MicroPDF417 Generator for Winforms is designed to generate and print high quality MicroPDF417 in Windows Forms applications using Visual Studio 2005 and 2008. It is compatible with .NET Framework 2.0/3.0/3.5/4.0 and above versions.
MicroPDF417 Generating SDK is a robust .NET Control library fully integrated with C#, VB.NET Managed C++ and Borland Delphi for .NET. Barcode options include height, size and other properties could be adjusted through C# and VB.NET codes.
MicroPDF417 for .NET Winforms Features
Encodable CharactersEncodable Characters Support to encode:
- Standard ASCII characters 0-127 (default: ISO/IEC 646)
- Extended ASCII characters 128-255 (default: ISO/IEC 8859-1)
Extended Channel InterpretationsMicroPDF417 will frequently be used in conjunction with a Transformation ECI appropriate for the data requirements of the application.
Barcode SpecificationCreated MicroPDF-417should conform to MicroPDF-417 barcode specification in ISO/IEC 24728: 2006
User ManualProvides complete sample code and step-by-step instructions over every aspect of MicroPDF417 generation in Winforms using VB.NET or C#.NET
Image & SizeProvides advanced options to customize MicroPDF417 barcode image, size and color through VB.NET or C# codes
Programming LanguageCompleted run in Visual C#, Visual Basic.NET, Managed C++ and Borland Delphi for .NET
MicroPDF417 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 MicroPDF417 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 MicroPDF417WebForm control into the Forms;
  4. You will see a barcode image generated; more MicroPDF417 barcode setting please see below.
How to Generate MicroPDF417 with C#, VB.NET Class in .NET Winforms?
Copy those following sample code to your .NET Winforms projects:
using BusinessRefinery.Barcode;

MicroQRCode barcode = new MicroPDF417();
barcode.Code = "MicroPDF417";
barcode.Resolution = 96;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/micropdf417-csharp.gif");
Dim barcode As BusinessRefinery.Barcode.MicroPDF417 = 
New BusinessRefinery.Barcode.MicroPDF417 ()
barcode.MicroPDF417 = BusinessRefinery.Barcode.Symbology.MicroPDF417
barcode.Code = "MicroPDF417"
barcode.Resolution = 96
barcode.Format = System.Drawing.Imaging.ImageFormat.Gif
barcode.drawBarcode2ImageFile("c:/micropdf417-vb-net.gif")