Home  >  .NET Windows Forms Barcode Component  >  .NET WinForms Barcoding Tutorial  >  .NET Windows Forms Barcoding Libary for UPC-A Barcode
.NET Windows Forms UPC-A Barcode Generator Control
.NET Windows Forms UPC-A Barcode Generator Control / Library is used to create UPC-A, UPC-A with 2-digit supplement, UPC-A with 5-digit supplement barcodes in .NET Windows Forms application using C#.NET and VB.NET class codes.
Overview - .NET Windows Forms UPC-A Barcode Generator Library
The KeepDynamic UPC-A Barcode DLL Class Library for .NET Windows Forms is a single dll, which integrates UPC-A barcode images generating functions into .NET WinForms project. Generated UPC-A barcode images are compatible with latest UPC-A barcode standards. The .NET Windows Forms UPC-A Barcode control is easy to use and supports most popular .NET Development Tools like Microsoft Visual Studio2005/2008/2010 and Express Editions.
Related barcoding solutions for generating UPC-A image by using .NET barcode generating control:
Feature - .NET Windows Forms UPC-A Barcode Generator Library
Imaging Settings - .NET Windows Forms UPC-A Barcode Generator Library
Various UPC-A barcode customizing options support allows the UPC-A barcodes to be configured with specific requirements and the customizations is simple and easy.
View more about UPC-A Barcode Properties of .NET Windows Forms Barcode Generator Library
Tutorial - .NET UPC-A Windows Forms Barcode Generator Control

How to Create & Save UPC-A Barcode Images in .NET Windows Forms Controller

  1. Integrate KeepDynamic.BarCode.Windows.dll to your Windows Forms project
  2. Add KeepDynamic.BarCode.Windows.dll to Visual Studio Toolbox. After this step, you can see four new items visible on the toolbox, that is, BarCodeControl, QRCodeControl, DataMatrixControl, and PDF417Control.
  3. Drag & drop BarCodeControl to your .NET WinForms project and a defaulted Code 128 barcode image will be visible
  4. Click created barcode image, change the value of SymbologyType to UPCA and encode a 11-digit data at CodeText in the Properties window
  5. Run the .NET Windows Forms project and your desired UPC-A barcode images will be created

How to Create & Save UPC-A Barcode Images in .NET Windows Forms Class Application

  1. Add KeepDynamic.BarCode.Windows.dll to your Windows Forms project
  2. Generate UPC-A barcode images using following C# or VB.NET class code
Free C# class code for UPC-A barcode generation in .NET Windows Forms application
// generate linear barcode object 
BarCode barcode = new BarCode();

// Set barcode type to upca
barcode.SymbologyType = SymbologyType.UPCA;

// Enter a 11-digit data string
barcode.CodeText = "12345678912";

// set size-related settings of UPC-A barcode image
// Set bar width of UPCA
barcode.X = 2;

// set EAN13 barcode image
barcode.BarCodeWidth = 250;
barcode.BarCodeHeight = 90;

// save generated barcode images to png image file using C#
barcode.drawBarcode("C://kdupca.png");
Free VB.NET class code for UPC-A barcode generation in .NET Windows Forms application
' generate linear barcode object 
Dim barcode As New BarCode()

' Set barcode type to upca
barcode.SymbologyType = SymbologyType.UPCA

' Enter a 11-digit data string
barcode.CodeText = "12345678912"

' set size-related settings of UPC-A barcode image
' Set bar width of UPCA
barcode.X = 2

' set EAN13 barcode image
barcode.BarCodeWidth = 250
barcode.BarCodeHeight = 90

' save generated barcode images to png image file using VB.NET
barcode.drawBarcode("C://kdupca.png")
More tutorial guidance at Add barcode creating features into .NET projects using .NET Windows Forms barcode control
Barcode Types - .NET UPC-A Windows Forms Barcode Generator Control