- Barcode Products
-
Guide
- Generate barcodes in ASP.NET
- Generate barcodes in .NET WinForms
- Generate barcodes in Visual C#.NET
- Generate barcodes in Visual Basic.NET
- Generate barcodes in Java
- Generate barcodes in Crystal Reports
- Generate barcodes in Reporting Service
- Generate barcodes in RDLC Report
- Generate Barcodes in BIRT Report
- Integration
- Knowledge
- Order Now
- About Us
Planet Winforms Generator - Overview
- Planet 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 Planet automatically
- Also create POSTNET (Postal Numeric Encoding Technique) in Winform
- Increase the white spaces around the symbol
- Supported by .NET 2.0 and later versions
Planet - Brief Introduction
The installation of Planet Winforms Generator into Winforms is straightforward. Dynamic Planet could be generated easily using Planet Winforms Generator. Planet Winforms Generator could be used to draw Planet in Windows applications. At the same time, it could be add to Winforms to stream Planet barcode image via Winforms.
Planet Winforms Generator - Generating Sample Code
1. How to generate Planet barcodes with Visual C# .NET
using BusinessRefinery.Barcode;
// construct a linear barcode object
Linear winformsplanet = new Linear();
// set linear barcode symbology to be planet
winformsplanet.Symbology = Symbology.planet;
// set UPC-A code text to encode
winformsplanet.Code = "Planet";
//draw barcode and save into image file in gif format
winformsplanet.drawBarcode2ImageFile("planet-in-winformscsharp.gif");
2. How to generate Planet using Visual Basic in .NET
// construct a linear barcode object
Dim winformsplanet As BusinessRefinery.Barcode.Linear
winformsplanet = New BusinessRefinery.Barcode.Linear()
// set linear barcode symbology to be planet
winformsplanet.Symbology = BusinessRefinery.Barcode.Symbology.planet
// set UPC-A code text to encode
winformsplanet.Code = "Planet"
//draw barcode and save into image file in gif format
winformsplanet.drawBarcode2ImageFile("planet-in-winformsvb.gif")