Reputation: 11768
I have 2 keyboards attached via usb. I want that my application to receive input only from one of them. I tried to use the TJvHidDeviceController i sucesefully get a handle to the device but i can't get any data.
Is it possible to prevent other applications to receive input from the second keyboard ?
Upvotes: 0
Views: 2114
Reputation: 36850
Is it possible for your set-up to not load a device driver for the keyboard you want to listen to? If it is, you could try this method:
\\?\
prefix to connect to this device and read/write raw data from it.Upvotes: 1