MC75 Scanner

  • Thread starter Thread starter Norman Lattimer
  • Start date Start date
N

Norman Lattimer

A real newbie to this only programmed in Visual Basic and 3.5CF .Net for 3 days, so loads to learn
I have an Symbol MC75, I can start, stop, close scanner etc and submit data in a text or list box via HttpWebRequest and get succesful response.
What I want to do is very simple. 2 text boxes and a list box. On load I would like to focus in TextBox1, scan then focus in TextBox2, scan, then focus in a ListBox1 and populate the list box with several scans then submit the info to a web server (I can do the last bit sending info to web server). How do I do the first parts. Any help on this would be great, tons to learn and not enough time to learn it.
Thanks
 
My thought would be to set the scanner to generate an Enter key or a Tab key
at the end of a scan. Tab might just automatically sequence to the next
field, with no work from you. If you have to set it to Enter, you could
catch that key at the form level and go to the next field.

Paul T.
 
Paul G. Tobey [eMVP] skrev:
My thought would be to set the scanner to generate an Enter key or a Tab key
at the end of a scan. Tab might just automatically sequence to the next
field, with no work from you. If you have to set it to Enter, you could
catch that key at the form level and go to the next field.
The scanner generates an event itself, so you can put the result of the
scan in whatever textbox you want, regardless on which item have current
focus.
 
Back
Top