Re: Dealing with a barcode scanner
"Mike Silva" <snarflemike@yahoo.com> wrote in message
news:1184354528.340788.184320@m3g2000hsh.googlegroups.com...
I'm writing a small dialog app that, along with taking keyboard input
the "regular" way, also takes input from a USB barcode scanner. The
issue is, the barcode data appears as typed-in text (followed by a
RETURN) in whatever app has the current focus. The scanner appears as
a "HID Keyboard Device" in the Windows Keyboard section. The problem
this presents in my app is that the user could be in any one of my
text-entry controls when he decides to scan in an object, thus dumping
the scanned text into any old text-entry control that happens to have
the focus at the moment. The only good news is, I can specify the
barcode text format and can thus pick out a barcode from any piece of
text.
The best solution, pretty clearly, is if I could catch the incoming
barcode scan before it gets into the keyboard data stream, but I have
no idea if this is possible, or how I would do it. If it's not
possible then it seems that I have to check each and every text-entry
control when a RETURN is detected, extract the barcode, and then clean
up the potentially trashed text in that control.
Are there any words of wisdom that you folks can pass along regarding
this situation? Can I read the two keyboards differently? Any help
greatly appreciated!
Are you only concerned about protecting edit boxes in your app from
accidental scans, or potentially any arbitrary window in any app? If only
windows in your app, you can derive them from something like
CFilterBarcodeScannerWnd (which derives from CWnd), which handles
WM_SETWINDOWTEXT and sees if the string about to be set is something that
looks like it was generated by the barcode scanner, and if so, don't set the
text. If it's not feasible to derive the windows you're concerned about
from CFilterBarcodeScannerWnd, then you can use something like Paul di
Lascia's CSubclassWnd (google "di lascia csubclasswnd") which does the
subclassing on the fly.
I would not recommend using a WH_KEYBOARD or WH_KEYBOARD_LL hook that your
function will get called when a key is pressed, but that is more work
because you have to implement a state machine that tracks each keystroke of
the barcode string... and even then, if the user pressed Backspace and fixed
a mistake, it would be almost impossible to track this.
-- David