Click here to Skip to main content
Click here to Skip to main content

Barcode UPC-A

By , 7 Jul 2007
 
Screenshot - Untitled.jpg

Introduction

This application will allow you to generate a UPC-A barcode. It includes the checksum feature.

Background

I originally built this application in VB.NET. While I was learning C#.NET, I decided to re-write it in C#.NET because at the time I was learning that application. I built this application about a year ago, and have not looked at the code since then. I was just hoping someone could really benefit from it. All I ask is if you do use it, please email me, and let me know how you used it, and proper credit (my name) would be cool, but not necessary.

Using the Code

  1. First create a new instance of the cUPCA class.
  2. Checksum to correct the input value with the correct last number, or to check to see if it is a valid UPC-A barcode.
  3. Create a new instance of an image.
  4. Set the back color to white.
  5. Pull back from the class to the image (this contains the barcode and numbers).
  6. Set your image to equal the image of the barcode.

cUPCA upca = new cUPCA();
if(this.txtTextToAdd.Text.Length == 12)
{
  this.txtTextToAdd.Text = this.txtTextToAdd.Text.Substring(0, 11) + 
    upca.GetCheckSum(this.txtTextToAdd.Text).ToString();
  Image img;
  img = upca.CreateBarCode(this.txtTextToAdd.Text, 2);
  this.pctBarCode.Left = System.Convert.ToInt32(
    (this.pnlWhiteBack.Width / 2) - (img.Width / 2));
  this.pctBarCode.Image = img;
  this.txtTextToAdd.SelectAll();
}
else
{
  this.pctBarCode.Image = null;
}

Points of Interest

To test this application, I bought a barcode scanner from Ebay for 5 dollars, and it works. I printed the barcodes out on paper with my laser printer, and they scan perfectly. I am also at times able to scan the barcode from the actual screen.

It was just a fun project that allowed me to learn a little bit more about the graphics class.

For the checksum class, I used the same code that was used in this article.

History

  • 7th July, 2007: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Bill Daugherty II
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionBarcode BackgroundmemberLalithKumar3 Jun '08 - 21:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 7 Jul 2007
Article Copyright 2007 by Bill Daugherty II
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid