|
-
August 19th, 2003, 04:24 AM
#1
enter key like tab key
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
Thanks!!!
Kristine
-
August 19th, 2003, 05:57 AM
#2
in keydown event...
If e.KeyCode = Keys.Enter Then
SendKeys.Send("{TAB}")
End If
Back after a long hibernation.
-
August 20th, 2003, 05:28 AM
#3
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.
Thanks!!!
Kristine
-
August 20th, 2003, 05:45 AM
#4
Back after a long hibernation.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|