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