I have a form with a number of text boxes on it
How do i get the program to move focus to the next text box when a user hits the enter key.
I used to use control arrays in VB6.
I know that you can trap the keydown event and if it is 13 or Keys.enter then move focus to the next text box, but this means that I have to have a Keydown event trap for every textbox on the form.
Isn't there an easier way?