Hello,
How could I change the focus of a texbox to another control?
I want to change from one texbox to the next texbox by pressing the Enter key.
I know that the code would be like that:
SUB __UI_KeyPress (id AS LONG)
SELECT CASE id
CASE Texbox1TB
IF __UI_KeyHit = 13 THEN
?????????????
END IF
...
Thanks
Just to let you know, the standard for that functionality is to use Tab not Enter. Enter is supposed to signify that you are finished with input and need to execute. If you are not planning on sharing your software, and you only plan on using it yourself that's one thing, but if you plan on sharing it, that would probably be pretty non-intuitive for a user.
Thank FellipeHeitor.