KA.Barcode for .NET WinForms
POSTNET Barcode Generator for WinForms
Create & Print Postnet Barcodes in WinForms, C#.NET, VB.NET Projects
Overviews

  • Postnet generation in .NET windows applications
  • Easy-to-use & integrate controls completely written in managed C#
  • Generate Postnet and other linear & 2D barcodes in C# class, such as UPC-E , EAN 8 , Codabar , Code 11 , Code 39 , Leitcode , Interleaved 2 of 5 , ITF 14 , and QR Code
  • Add option ShortTallRatio to set the proportion of the short bar to the tall one in POSTNET
  • Show human readable text with customizable Font, Color, and Margin Settings
  • Draw Postnet using C# and VB.NET
  • Generate Postnet in stream object, in graphics object, and image formats
  • Print and save Postnet as gif, jpeg, png, tiff, and bitmap files

Postnet Information

POSTNET, is also named as USPS POSTNET Barcode, USPS Postal Numeric Encoding Technique Barcode, Delivery Point Barcode (DPBC), Postnet 3 of 5.

c# generate barcode from string, java barcode reader free download, how to generate barcode in c# web application, barcode generator dll c#, java android barcode library, barcode reader in c# windows application

Barcode Character Set Sample Image
Postnet
  • Digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9;

  • 5, 6, 9, or 11 digits encodable


How to Generate Postnet Barcodes using WinForms Barcode Generator

Setup Process

  1. Download KeepAutomation WinForms Barcode Generator from the following link:

    KeepAutomation WinForms Barcode Generator (Evaluation Version)
  2. Unzip the package net_barcode_trial.zip in the project folder

Drag & Drop WinForms Postnet Generator

  1. Open your project by .NET IDE
  2. Add KeepAutomation.Barcode.Windows.dll to project reference
  1. Add KeepAutomation.Barcode.Windows.dll to the Toolbox
  2. Drag and drop KeepAutomation.Barcode.Windows.dll (named BarcodeControl)

Quick Generating Postnet for WinForms Using C#.NET, VB.NET

WinForms Barcode Generator for Postnet set the default value of properties properly, which implement quick Postnet generation in Windows Applications. You can add the following C#.NET or VB.NET Code to project.

Sample Code in C#.NET Sample Code in VB.NET
using KeepAutomation.Barcode.Bean;
BarCode postnet = new BarCode();
postnet.Symbology = Symbology.postnet;
postnet.CodeToEncode = "12345678901";

postnet.generateBarcodeToImageFile("C://postnet-csharp.gif");

Dim postnet As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
postnet.Symbology = KeepAutomation.Barcode.Symbology.postnet
postnet.CodeToEncode = "12345678901"

postnet.generateBarcodeToImageFile("C:/postnet-vb.gif")

For advanced generation tutorial, see C#.NET Developer Guide For advanced generation tutorial, see VB.NET Developer Guide