Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need Advice...New to Barcoding

Status
Not open for further replies.

dvannoy

MIS
May 4, 2001
2,765
US
I am going to be developing a barcoding/data entry system using VB and barcoding software. One of the problems is, the user cannot look at the screen when scanning customer surveys since this will be done onsite live. These will be simple YES/NO anwsers and some Zip code entry from preprinted barcode labels. I would use the bar code in place of data entry.

What would be the best way to make this work. I was thinking about once data gets put into a field it would then auto go to the next field.

can anyone else give some feedback on this??

any help would be appreciated
thanks

 
If you add a Enter Key (chr(13) to the barcode this is done in the scanner. After each barcode is scanee it should move to the next field.
You need to check the data being scanned into each box
If they are either Yes or No then put in the "On key down" event of the text box
if Keycode = &hd then 'they pressed the Enter key
If yourtextbox.text = "Yes" or yourtextbox.text = "no" then
'do something here
else
msgbox("invalid scan") 'etc
end if
end if



DougP, MCP, A+
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top