Link to home
Start Free TrialLog in
Avatar of Mehram
MehramFlag for Pakistan

asked on

Bar Code Programming

For attendance software I want have to do barcode coding on emp_code can some one guide me how it possible. Rgds. Iqbal
Avatar of JohnBPrice
JohnBPrice

If you get a bar code scanner for PC, they just emit keystrokes as if you type the barcode number on the keyboard, which also makes it easy to support manual entry for barcodes that become unreadable.  You can get barcode fonts so that you can print your own, and you can put in anything you want.  Note there are several different bar code standards, so get a font you readers can read.  We use the wasp wand reader, which you can pick up at a lot of places, including CompUsa http://www.compusa.com/products/product_info.asp?product_code=50118263&pfp=BROWSE
its easy way just you need you will use time attendance machine or barcode scanner any way
if you use time attendance michine you need to get special card like the ATM cards then you will connect the machine to oyur computer on the serial port then you need need to make timer to check the serial port for incoming data by
on form_load
mscom1.portopen = true

and the time will make check every second for the data coming from the machine
by mscom1.input=  and  mscom1.output
so when you get the data you can do what you need


if use barcode scanner then you will need to use keyboard connection for this situation any barcode will display automaticly in your system so you will deal with it

i hope i help you


Avatar of Mehram

ASKER

Sir, your provided information is really help full for me. I actually want to know how the data will be inserts into MYSQL,

As you guide me on form_load

Quote:
mscom1.portopen = true

and the time will make check every second for the data coming from the machine
by mscom1.input=  and  mscom1.output
so when you get the data you can do what you need
Unquote:

Either the coming data will be saved into any variable and then through insert command it will be transfer in MYSQL.

May be my question is stupid but I am new so need your help.
ASKER CERTIFIED SOLUTION
Avatar of Uday Ethirajulu
Uday Ethirajulu
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial