- This topic has 1 reply, 2 voices, and was last updated 8 years, 10 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Integrated Application Platform
Integrated Application Platform › Forums › General › Please Help
Hi Everyone
Thank you Andrew and Jeff for the helps you give to others about Suneido
Many thanks for others too for this nice forum.
I need to use Enter Key to jump from a control to the next ( but not by Tab key)
is it possible to emulate Tab key using Enter Key or we must play with windows api and structure ?
Thank you
Tahar
Do you want to do this in one specific place or for your entire application? Making this work globally could be tricky.
If you just need it in one specific place, you could look at LocateControl in stdlib and see how it handles processing the Enter key. It uses SetWindowProc and then handles the window messages in the Enterproc method. You could do something similar. There is a SetFocus function that you could also use to place the focus in the other control as long as you have a window handle.