Our Customers
Contact Us Email: support@barcodelib.com
Home > .NET WinForms Barcode > Windows Forms Barcode Generation Guide > PLANET Barcode Generating & Printing for .NET WinForms
Download Barcode for .NET WinForms Trial

.NET Windows Forms PLANET Barcode Generation DLL

PLANET Barcode Generation in .NET WinForms Applications
  • Support 1D PLANET barcode generation in Visual 2005 and later versions
  • Top-notch PLANET barcode generator library for .NET WinForms, well designed and strictly tested
  • Generate PLANET barcode image in .NET WinForms using C# or VB.NET class
  • Generate user-defined PLANET barcode image easily in .NET Windows Forms
  • Provide detailed tutorial for PLANET barcode image generation in .NET WinForms
  • Easily make an order online or offline for permanent and royalty-free .NET developer license
.NET Windows Forms PLANET Barcode Overview
PLANET is a 1D barcode similar in structure to the POSTNET Code address barcode used by mail processing equipment to sort the mail.
PLANET is also known as USPS PLANET Barcode, USPS Confirm Service Barcode.
It only encodes numeric characters (0, 1, 2, 3, 4, 5, 6, 7, 8 & 9) as well as the start/stop character.
How to Generate PLANET Barcode Image in .NET Windows Forms Applications
  1. Add reference (BarcodeLib.Barcode.WinForms.dll) to your Visual Studio Toolbox and LinearWinForm, QRCodeWinForm, DataMatrixWinForm and PDF417WinForm components are added.
  2. Drag component LinearWinForm to .NET Windows Forms program, e.g. Form1.
  3. Select PLANET barcode under Type item of the Properties window.
  4. Change size setting and image setting of your PLANET barcode through Properties window.
How to Generate .NET WinForms PLANET Barcode Image Using C# & VB Class

PLANET .NET WinForms Barcode Generation Using C# & VB .NET Class

  1. Add reference (BarcodeLib.Barcode.WinForms.dll) to your .NET WinForms project in the Visual Studio
  2. Cite the following sample codes to generate PLANET barcode image in .NET WinForms.
.NET Windows Forms PLANET barcode image generation with sample codes (C#)
     BarcodeLib.Barcode.Linear planet = new BarcodeLib.Barcode.Linear();
planet.Type = BarcodeType.PLANET;
planet.Data = "1452369872554";
planet.BarHeightRatio = 0.4F;

planet.UOM = UnitOfMeasure.INCH;
planet.BarWidth = 0.03F;
planet.BarHeight = 0.5F;
planet.ImageFormat = System.Drawing.Imaging.ImageFormat.Jpeg;

// Save PLANET barcode image into your system;
planet.drawBarcode("c:// planet.jpeg");
.NET Windows Forms PLANET barcode image generation with sample codes (VB)
     Dim planet As New BarcodeLib.Barcode.Linear()
planet.Type = BarcodeType.PLANET
planet.Data = "1452369872554"
planet.BarHeightRatio = 0.4F

planet.UOM = UnitOfMeasure.INCH
planet.BarWidth = 0.03F
planet.BarHeight = 0.5F

planet.ImageFormat = System.Drawing.Imaging.ImageFormat.Jpeg

' Save PLANET barcode image into your system;
planet.drawBarcode("c:// planet.jpeg")
Supported .NET WinForms Barcode Symbologies
WinForms 1D Barcodes:
WinForms 2D Barcodes:
2D barcodes provided: Data Matrix, PDF 417, QR-Code.



See Also: Related Barcoding Tutorials

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