VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



In Visual Basic, normaly to go to the next textbox, you have to press the Tab key on your Keyboard.

by Antonio Jr Edouard (2 Submissions)
Category: Custom Controls/Forms/Menus
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Fri 15th June 2001
Date Added: Mon 8th February 2021
Rating: (1 Votes)

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.




Private sub Text1_KeyPress(KeyAsccii as integer)
if KeyAsccii = 13 then
Text2.Setfocus
End if
End Sub

Download this snippet    Add to My Saved Code

In Visual Basic, normaly to go to the next textbox, you have to press the Tab key on your Keyboard. Comments

No comments have been posted about In Visual Basic, normaly to go to the next textbox, you have to press the Tab key on your Keyboard.. Why not be the first to post a comment about In Visual Basic, normaly to go to the next textbox, you have to press the Tab key on your Keyboard..

Post your comment

Subject:
Message:
0/1000 characters