Friend's,
How do make change textbox automaticly for other textbox???
Don't like tab!!!
Tnk's
[Edited by rlamrf on 11-06-2000 at 02:57 PM]
Printable View
Friend's,
How do make change textbox automaticly for other textbox???
Don't like tab!!!
Tnk's
[Edited by rlamrf on 11-06-2000 at 02:57 PM]
Can you be more specific as what your problem is..I didn't understand what you actually want
What exactly do you mean?
If you mean to give the focus to the TextBox, then use the SetFocus method.
Code:MyTextBox.SetFocus
Do u mean that u don't like pressing the TAB key to move from one text box to another?
If so u must really be lazzzzzzzzzyyyyyyy!!!!!:D
What method do you want using the mouse would be a similar processes in fact a longer one than using the tab key, no?
BE MORE SPECIFIC
Would the Enter key be easer, or is it still to far to reach?
for using enter use code like:
If KeyAscii = 13 Then
KeyAscii = 0
Text2.SetFocus
End If
replace object names as appropriate.
[Edited by Ramandeep on 11-06-2000 at 05:43 PM]