Overviews
- Planet generation in .NET windows applications
- Easy-to-use & integrate controls completely written in managed C#
- Generate Planet 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 PLANET
- Show human readable text with customizable Font, Color, and Margin Settings
- Draw Planet using C# and VB.NET
- Generate Planet in stream object, in graphics object, and image formats
- Print and save Planet as gif, jpeg, png, tiff, and bitmap files
Planet Information
PlANET, is also named as USPS PLANET Barcode, USPS Confirms Service Barcode.
Barcode |
Character Set |
Sample Image |
Planet |
- Digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9;
- 11 or 13 digits encodable
|
 |
Visual Studio 2005; Visual C#.NET. 1D & ....
Find "KeepAutomation.Barcode.Windows" or "KeepAutomation.Barcode.Web" in the ....
more>
How to Generate Planet Barcodes using WinForms Barcode Generator
Setup Process
- Download KeepAutomation WinForms Barcode Generator from the following link:
KeepAutomation WinForms Barcode Generator (Evaluation Version)
- Unzip the package net_barcode_trial.zip in the project folder
Drag & Drop WinForms Planet Generator
- Open your project by .NET IDE
- Add KeepAutomation.Barcode.Windows.dll to project reference
- Add KeepAutomation.Barcode.Windows.dll to the Toolbox
- Drag and drop KeepAutomation.Barcode.Windows.dll (named BarcodeControl)
Quick Generating Planet for WinForms Using C#.NET, VB.NET
WinForms Barcode Generator for Planet set the default value of properties properly, which implement quick Planet 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 planet = new BarCode();
planet.Symbology = Symbology.planet;
planet.CodeToEncode = "12345678901";
planet.generateBarcodeToImageFile("C://planet-csharp.gif");
|
Dim planet As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
planet.Symbology = KeepAutomation.Barcode.Symbology.planet
planet.CodeToEncode = "12345678901"
planet.generateBarcodeToImageFile("C:/planet-vb.gif")
|
For advanced generation tutorial, see C#.NET Developer Guide |
For advanced generation tutorial, see VB.NET Developer Guide |