Re: Trapping for the Return Key on keypad of a Windows machine

2007-02-05 Thread Martin Blackman
It should be triggering an 'enterinfield' On 04/02/07, Charles Szasz [EMAIL PROTECTED] wrote: Does anyone have a suggestion on how to trap the Return key on the keypad of a Windows machine running Windows 2000 and XP? In my application, the last text entry when it is completed is supposed to

Re: Trapping for the Return Key on keypad of a Windows machine

2007-02-05 Thread [EMAIL PROTECTED]
I suggest you can use: rawkeydown or rawkeyup on rawKeyDown theKeyNumber if theKeyNumber is 65308 then increaseScroll -- mouse wheel down pass rawKeyDown -- if the key should have further effects. For blocking the key comment this line. else if theKeyNumber is 65309 then decreaseScroll -- mouse

Trapping for the Return Key on keypad of a Windows machine

2007-02-03 Thread Charles Szasz
Does anyone have a suggestion on how to trap the Return key on the keypad of a Windows machine running Windows 2000 and XP? In my application, the last text entry when it is completed is supposed to enable a button for calculation. It works using the standard Return key on the keyboard but