09-28-2005 10:14 AM
09-29-2005 04:09 PM
I don't think that CVI has the functionality to globally block keyboard events, but you can use the EVENT_KEYPRESS event on your panel and controls to trap any keys pressed. You could make a definition that can easily be added to your control/panel callbacks:
#define TrapKeypress case EVENT_KEYPRESS: return -1;