04-09-2008 08:06 AM
04-09-2008 08:07 AM
04-09-2008 09:38 PM - edited 04-09-2008 09:40 PM
04-10-2008 01:32 AM
I think the behaviour Clare wants is:
Tab to the control, press the enter key and it switches to "On". Release the Enter key and it switches back to "Off".
What happens is that each keyboard event changes the state. The keyboard repetition of "key down" will switch the control from "On" to "Off" and vice versa.
The skip control when tabbing forces the user to put the hands from the keyboard and use the mouse.
04-10-2008 03:38 AM
waldemar.hersacher wrote:
I think the behaviour Clare wants is:
Tab to the control, press the enter key and it switches to "On". Release the Enter key and it switches back to "Off".
What happens is that each keyboard event changes the state. The keyboard repetition of "key down" will switch the control from "On" to "Off" and vice versa.
The skip control when tabbing forces the user to put the hands from the keyboard and use the mouse.
04-10-2008 03:41 AM
waldemar.hersacher wrote:
I think the behaviour Clare wants is:
Tab to the control, press the enter key and it switches to "On". Release the Enter key and it switches back to "Off".
What happens is that each keyboard event changes the state. The keyboard repetition of "key down" will switch the control from "On" to "Off" and vice versa.
The skip control when tabbing forces the user to put the hands from the keyboard and use the mouse.
04-10-2008 03:46 AM
04-10-2008 05:56 AM
Using the mouse you see: Mouse Down -> On, Mouse up -> Off Holding the mouse dowm for lets say ten seconds, the user does mouse down, holding, mouse up.
Using the keyboard you see: Key down -> On, Delay, Key down -> off, Key down -> on, Key down -> off ... Pressing the key for lets say ten seconds, the user does key down, holding, key up.
Yes you must use an event structure with an filter event on Keydown.
04-10-2008 06:17 AM
Your answer is very descriptive n clear; but see the attached VI.
Filterig Key Down? event seems ti have no effect on the OK button.
05-27-2008 10:47 AM