In Visual Basic, normaly to go to the next textbox, you have to press the Tab key on your Keyboard.
In Visual Basic, normaly to go to the next textbox, you have to press the Tab key on your Keyboard. Now you can use the Enter Key to navigate
Rate In Visual Basic, normaly to go to the next textbox, you have to press the Tab key on your Keyboard.
(1(1 Vote))
Private sub Text1_KeyPress(KeyAsccii as integer)
if KeyAsccii = 13 then
Text2.Setfocus
End if
End Sub
In Visual Basic, normaly to go to the next textbox, you have to press the Tab key on your Keyboard. Comments
No comments yet — be the first to post one!
Post a Comment