Our Customers
Contact Us Email: support@barcodelib.com
Home > .NET WinForms Barcode > Windows Forms Barcode Generation Guide > POSTNET Barcode Creating & Drawing for .NET Windows Forms Project
Download Barcode for .NET WinForms Trial

.NET WinForms POSTNET Barcode Generator DLL Library

POSTNET Barcode Generation in Visual Studio .NET WinForms Applications
  • Entirely compiled in Visual C# with full integration in .NET Windows Forms applications
  • 100% comply with POSTNET barcode generation industrial standards
  • Generate readable linear POSTNET barcode in C#.NET WinForms applications
  • Create standard POSTNET barcode image in VB.NET WinForms applications
  • POSTNET can be output with multiple forms in .NET program, highly readable and printable
  • Professional Visual .NET WinForms Barcode Generator DLL Assembly with high prestige
.NET Windows Forms POSTNET Barcode Features
POSTNET is also known as USPS POSTNET Barcode, USPS Postal Numeric Encoding Technique Barcode, Delivery Point Barcode (DPBC), Postnet 3 of 5.
It has the following main features.
  • Encodable characters: 0 to 9 as well as the start/stop character
  • Data string length: 6 digits, 7 digits, 10 digits and 12 digits (including the checksum digit)
  • Utilization: postal services
As well, PLANET barcode is also supported by .NET Windows Forms Barcode Generator SDK.
How to Generate .NET WinForms POSTNET Barcode Image Through Control
  1. Download and unzip free WinForms Barcode Generator SDK trial package.
  2. Add reference ("BarcodeLib.Barcode.WinForms.dll") to your Visual Studio "Toolbox" and you will see four components (LinearWinForm, QRCodeWinForm, DataMatrixWinForm and PDF417WinForm).
  3. Drag component "LinearWinForm" to your Visual Studio .NET Windows Forms program.
  4. Choose POSTNET barcode under "Type" item of the "Properties" window.
  5. Change other settings of your POSTNET barcode image through the "Properties" window.
How to Generate C# & VB POSTNET Barcode in .NET WinForms Applications
Generate POSTNET .NET WinForms Barcode Using C# & VB .NET Class
  1. Add BarcodeLib.Barcode.WinForms.dll to your VS.NET WinForms project reference.
  2. Create POSTNET barcode image in .NET Windows Forms through the following source codes.
How to generate POSTNET barcode image .NET WinForms using C# source codes:
     BarcodeLib.Barcode.Linear postnet = new BarcodeLib.Barcode.Linear();
postnet.Type = BarcodeType.POSTNET;
postnet.Data = "15875412358";

postnet.UOM = UnitOfMeasure.PIXEL;
postnet.BarWidth = 2;
postnet.BarHeight = 70;
postnet.ImageWidth = 300;
postnet.ImageHeight = 100;
postnet.ImageFormat = System.Drawing.Imaging.ImageFormat.Bmp;

// Save POSTNET barcode image into your system;
postnet.drawBarcode("c:/postnet.bmp");
How to generate POSTNET barcode image .NET WinForms using VB source codes
     Dim postnet As New BarcodeLib.Barcode.Linear()
postnet.Type = BarcodeType.POSTNET
postnet.Data = "15875412358"

postnet.UOM = UnitOfMeasure.PIXEL
postnet.BarWidth = 2
postnet.BarHeight = 70
postnet.ImageWidth = 300
postnet.ImageHeight = 100
postnet.ImageFormat = System.Drawing.Imaging.ImageFormat.Bmp

' Save POSTNET barcode image into your system;
postnet.drawBarcode("c:/postnet.bmp")
All .NET WinForms Barcode Symbologies
WinForms 1D Barcodes:
WinForms 2D Barcodes:
2D Barcodes Included: Data Matrix, PDF 417, QR-Code.



See Also: Related Barcoding Tutorials

.NET Windows Forms Visual C# & Visual Basic Barcoding Tutorials