Barcode reader

G

Guest

Hello
i want to make a microsoft access that can read barcodes input and save them
in its database.
so what advices can u give to me about reading those barcodes.

-how can i perform automatic responce when receiving data from barcode.
-how can i lock a text feild for entry to be only allowed to barcode not to
keyboard
-can access read data while it's minimized?
i'll be greatfull for any other advices.

thank in advance
 
G

Guest

barcode are just another font. access uses 3 of 9 barcode
font. there are others you can download from the net.
http://www.granite.ab.ca/access/barcode.htm
A barcode reader is just another input device like the
keyboard except it reads barcode fonts and translates that
into text.
as to your questions, i am not entirely understanding you.
if you send text data to a barcode printer with the font
set to barcode, it will print barcode.
if you read a barcode with a barcode reader, it will
display in your form as the text fort you set. if set to 3
of 9 barcode, that is what will appear in the text box.
i don't think i have answered your guestions. repost and
clairify.
 
G

Guest

hello, thanks for replying.

actuly i'm doing a software for employees to register the time when they
come and leave the company. ( in/out time ).
they should pass their ID on the barcode reader, and the software should
write the time in the database.

so my questions are:
1- Should microsoft access software stay opened all the time on the comuter,
can't i minimize ? or put something in trayicon to detect the barcodes enterd.

2- if the software is always opened, can i lock the text feild where the
barcodes should go, and enable it only to the barcode reader, i mean that i
don't want the users to enter data or numbers from the keyboard to that
feild. it should only receive data from the barcode reader.

3- when receiving data from the barcode, can i generate an automatic
response to insert a record to the database without user interference.

i tried to clarify my questions as much as i can, i'll be waiting for ur
replies..

thanks again

Sensay
 
T

Thomas Lutz

For reading bar codes into an Access application, you have two
choices.
Most bar code readers are available with one of two output options.
The first option is called "Keyboard Wedge" output where you unplug
your keyboard, plug the bar code reader into the keyboard port on your
PC and then plug your keyboard into the bar code reader. This
arrangement makes the bar code reader appear as it it were simply a
second keyboard. Your original keyboard continues to work as normal
however when you read a bar code, the data encoded in the bar code
appears to any application running on your PC as if it were typed in.
The keyboard wedge interface is extremely simple however it has a few
drawbacks. If you scan a bar code, the cursor has to be in the correct
input field in the correct application otherwise you end up reading
bar code data into whatever application has the focus. This can cause
all sorts of potential problems if the cursor is not in the right
place when the bar code is scanned. You also cannot "lock" a textbox
so that the user cannot type in data and force data to come in from
the scanner only.
The keyboard output also is limited in that you cannot modify the data
in any way before sending it into the program that is to receive the
data. For example, if you needed to parse a bar code message up into
pieces or remove some of a bar code message or add in a date or time
stamp you would not be able to with a normal keyboard wedge reader.

The best way to do what you want to do is to get a bar code reader
with an RS232 or "Serial" interface. With these types of bar code
readers, you connect the reader to an available serial port on the
back of your PC. You would then need a program called a "Software
Wedge" to take the data from the bar code reader and feed it to the
application where you want the data to go. The disadvantage to this
approach is that it is a little more complex however you gain much
more control over how and where your data ends up when you read a bar
code. With a Software Wedge, you can control exactly where the data
goes in the target application and you can also perform all sorts of
modifications on the data before it is sent to the application.
You can also set everything up so that the textbox where the data gets
written is locked so that only bar code data can go into the textbox.
In addition, you can minimize your application and have it running in
the background while you use the PC for other tasks and still have all
bar code data go into the database.

TAL Tehchnologies sells a product called WinWedge which is a Software
Wedge for Windows. For interfacing a RS232 bar code scanner to an
Access application, WinWedge is the best tool available.
Visit: http://www.taltech.com/products/winwedge.html
for more information about WinWedge.

TAL also sells a very high quality line of bar code laser scanners at
very reasonable prices. All their scanners are available with either
the keyboard wedge output or RS232 output. For scanners see:
http://www.taltech.com/products/bc_reader.html

This web site is also an extremely good place to obtain information
about bar coding in general be sure to look in the Resources section
of the site for a bar code tutorial.

For printing bar codes from Access, you would be best off using a bar
code ActiveX control like the one fromTAL Technologies at the
following URL:
http://www.taltech.com/products/activex_barcodes.html
If you need to print bar codes, I would recommend that you download
the demo of the TAL Bar Code ActiveX control from the above URL and
take a look at the sample Access database that is provide with the
demo.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top