06-12-2006 01:29 PM
06-12-2006 04:55 PM
This isn't really a Labwindows/CVI question and this is probably not the best place to ask it. However, I will take a stab at it anyway.
Do you need the keyboard at all? If not, you may be able to just remove it from the system. If the USB barcode scanner is detected as a keyboard device on bottup, you should be fine.
06-13-2006 03:26 PM
Vector,
Try this.
http://www.autoitscript.com/autoit3/docs/functions/BlockInput.htm
Download autoit dll from above website and use this function.
06-14-2006 03:52 PM
I just noticed while going through the SDK documentation while looking for other stuff that there is a function called BlockInput () that is supposed to prevent keyboard and mouse input from getting to the applications. If it works the way I think it does, it will block all keyboard and mouse input to ALL applications. So it MIGHT work with your barcode scanner, it might not. If your barcode scanner emulates a keyboard, then this would not be the function to use.
A way to test this would be to write a very trivial application to call the BlockInput function, delay for some time using an asynchronous timer and then reenable input in the timer callback function.