Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm making an application to run in the background on a salespoint to read input from a usb scanner. How can I get the input of the scanner from C#? And can I differentiate between the scanner and a usb keyboard? (Scanner is a HID device)

share|improve this question

1 Answer

up vote 5 down vote accepted

I did this successfully before using a “Raw Input” implementation on CodeProject:

It allows you to receive both the input (what “keys” are pressed if it mimics a “keyboard”) as well distinguish which device it came from.

share|improve this answer
That looks pretty good. However it doesnt seem to be firing the _KeyPressed event even though it picked up my 2 HID devices. – d1k_is Sep 7 '10 at 3:55
Got it working, was compiling it under 32 bit on a 64 bit Windows. Thanks again. – d1k_is Sep 7 '10 at 4:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.