POSTNET for .NET WinForms
Postnet Winforms Generator - Overview
  • Postnet bar code image generator for Winforms in .NET project
  • A clear structured and strongly named DLLs
  • Compatible with Window Control Library and Web Control Library in .NET
  • Support Windows application, console application, and class library
  • Compute check digits for Postnet automatically
  • Generate Postal Alpha Numeric Encoding Technique (PLANET) in Winforms
  • Increase the white spaces around the symbol
  • Supported by .NET 2.0 and later versions
Postnet - Brief Introduction

The installation of Postnet Winforms Generator into Winforms is straightforward. Dynamic Postnet could be generated easily using Postnet Winforms Generator. Postnet Winforms Generator could be used to draw Postnet in Windows applications. At the same time, it could be add to Winforms to stream Postnet barcode image via Winforms.
Postnet Winforms Generator - Generating Sample Code

1. How to generate Postnet barcodes with Visual C# .NET


using BusinessRefinery.Barcode;

// construct a linear barcode object

Linear winformspostnet = new Linear();

// set linear barcode symbology to be postnet

winformspostnet.Symbology = Symbology.postnet;

// set UPC-A code text to encode

winformspostnet.Code = "Postnet";

//draw barcode and save into image file in gif format

winformspostnet.drawBarcode2ImageFile("postnet-in-winformscsharp.gif");


2. How to generate Postnet using Visual Basic in .NET


// construct a linear barcode object

Dim winformspostnet As BusinessRefinery.Barcode.Linear

winformspostnet = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to be postnet

winformspostnet.Symbology = BusinessRefinery.Barcode.Symbology.postnet

// set UPC-A code text to encode

winformspostnet.Code = "Postnet"

//draw barcode and save into image file in gif format

winformspostnet.drawBarcode2ImageFile("postnet-in-winformsvb.gif")




Quick Links