Click here to Skip to main content
15,881,812 members
Articles / Programming Languages / Visual Basic
Article

VBScan barcode software

Rate me:
Please Sign up or sign in to vote.
4.02/5 (33 votes)
23 Jun 2004GPL32 min read 334.7K   12.3K   190   35
A barcode scanning and decoding software without third-party software

Image 1

Introduction

VBScan is a simple program to scan, decode and draw a barcode. It uses only .NET Framework and Windows API functions, no third party products.

It is designed to work with a "barcode wand" scanner that is connected to the com port (RS232) of a PC. Since most barcode wands have TTL voltages you'll need a converter chip to connect the wand to the PC.

After pressing the start button the program periodically checks the DSR line of the RS232. If a transition between black and white is detected it stores how many ticks the last bar was wide. After scanning and pressing stop the scanned barcode get "cleaned", so that we have no incorrect bars. If you now press decode the barcode will be decoded (only Code 3 of 9 supported at the moment) and the datastring is shown in a textbox.

Image 2

Background

I wrote this program as a project in school. It was designed to work, and nothing more. I'm not a programming professional, so the code is sometimes a bit ugly.

Using the code

I have written 3 classes: Barcode, Code39 and HighSpeedTimer

The Barcode class stores the scanned data in a simple integer array. The class also provides some functions to clean and draw the barcode.

The Code39 class provides functions to decode an barcode object. It only supports "Code 3 of 9" barcodes, but it wouldn't be a problem to implement other encoding variants too.

The HighSpeedTimer class is a wrapper around the windows API functions to time more exact than the normal timer. I had to do this because the resolution of the standard timer is not high enough to scan barcodes exactly. This is probably the most ugly part in my program. If you start the timer, it uses a high amount of processor power, despite the fact that it does actually nothing... If you can help me improve this class i would appreciate it.

In the download file you'll find all the classes mentioned above and a small program (see the screenshot) to test them.

Note: In the frmMain there is a Paint event of the picturebox to redraw the barcode. It works, but uses much CPU time...

History

  • 04-06-23: v0.9.1635 - first posted version

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Austria Austria
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalsome one know change port to ps/2 or usb Pin
malilla_man11-Apr-05 12:15
malilla_man11-Apr-05 12:15 
GeneralRe: some one know change port to ps/2 or usb Pin
SumathyKC20-Sep-06 3:32
SumathyKC20-Sep-06 3:32 
QuestionRe: some one know change port to ps/2 or usb Pin
ericming21-Aug-07 1:56
ericming21-Aug-07 1:56 
Questionproblem reading barcodes ? Pin
Moustafa Arafa15-Nov-04 23:51
Moustafa Arafa15-Nov-04 23:51 
QuestionCode39 Quetsion ? Pin
Moustafa Arafa11-Nov-04 14:10
Moustafa Arafa11-Nov-04 14:10 
QuestionA Question on using Demo ? Pin
Moustafa Arafa10-Nov-04 14:22
Moustafa Arafa10-Nov-04 14:22 
Generaltransformed to asp.net Pin
tommy skaue29-Jun-04 2:07
tommy skaue29-Jun-04 2:07 
GeneralRe: transformed to asp.net Pin
Socolongo29-Jun-04 2:56
Socolongo29-Jun-04 2:56 
Stream the image of the bar code to the browser.

Francisco
GeneralRe: transformed to asp.net Pin
Graeme Howell30-Jun-04 15:30
Graeme Howell30-Jun-04 15:30 

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

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