Click here to Skip to main content
Licence CPOL
First Posted 7 Jul 2007
Views 38,791
Downloads 889
Bookmarked 55 times

Barcode UPC-A

By | 7 Jul 2007 | Article
UPC-A C# class that will generate UPC-A codes
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



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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionUPC-A Encoder PinmemberZacbr4:33 23 Feb '12  
Generalbarcode in code 39 PinmemberMember 792522022:26 8 Jul '11  
QuestionPossible to have more than 13 charactor? Pinmemberadcom8022:18 13 Oct '08  
QuestionScanning of Barcode PinmemberLalithKumar21:49 3 Jun '08  
QuestionBarcode Background PinmemberLalithKumar21:33 3 Jun '08  
Questionexplain codeproject ~~~~! PinmemberchinaQI2:10 8 Jul '07  
AnswerRe: explain codeproject ~~~~! PinmemberBill Daugherty II6:11 8 Jul '07  
GeneralRe: explain codeproject ~~~~! PinmemberchinaQI20:30 8 Jul '07  
GeneralRe: explain codeproject ~~~~! PinmemberBill Daugherty II2:01 9 Jul '07  
GeneralRe: explain codeproject ~~~~! PinmemberchinaQI5:16 9 Jul '07  
Generalfirst-rate code! PinmemberchinaQI1:33 8 Jul '07  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

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