I have an edit field where I capture the keydown event. I can check to see
if the return key is selected.
What I want to do is tab to the next field (based on tab index) when the
enter key is pressed. What is the syntax for doing this?
Thanks.
STom
Robby - 07 Dec 2004 07:43 GMT
When [Enter] key is pressed send the [Tab] key.
Robby
>I have an edit field where I capture the keydown event. I can check to see
>if the return key is selected.
[quoted text clipped - 5 lines]
>
> STom
Tommy Carlier - 07 Dec 2004 09:30 GMT
myField.FindForm().SelectNextControl(myField, true, true,
true, true);
>-----Original Message-----
>I have an edit field where I capture the keydown event. I can check to see
[quoted text clipped - 8 lines]
>
>.