I'm looking for an easy way to treat all 'Enter' Keypresses as a 'Tab' keypress.
I want to move the focus to the next textbox after the user press enter just like the tab key. Any idea?
Thanks
Printable View
I'm looking for an easy way to treat all 'Enter' Keypresses as a 'Tab' keypress.
I want to move the focus to the next textbox after the user press enter just like the tab key. Any idea?
Thanks
in keydown event...
If e.KeyCode = Keys.Enter Then
SendKeys.Send("{TAB}")
End If
Hi!!! Where should i put those codes? I tried putting it on the textbox keypress event but it only display the word (TAB) on the text box.
in keydown event...