N Nigel Deans Mar 27, 2005 #1 I need to get my tab control to treat the ENTER key like a TAB key... Is there an easy way to do this?
I need to get my tab control to treat the ENTER key like a TAB key... Is there an easy way to do this?
G Guest Mar 27, 2005 #2 In the Keydown event, you should be able to intercept the return key and use "SendKeys" to send the tab key message.
In the Keydown event, you should be able to intercept the return key and use "SendKeys" to send the tab key message.
G Guest Mar 27, 2005 #3 Another option is to override the ProcessCmdKey function if you are subclassing your tab control.
H Herfried K. Wagner [MVP] Mar 27, 2005 #4 Nigel Deans said: I need to get my tab control to treat the ENTER key like a TAB key... Is there an easy way to do this? Click to expand... Enter Instead of Tab <URL:http://blogs.duncanmackenzie.net/duncanma/archive/2004/12/13/936.aspx>
Nigel Deans said: I need to get my tab control to treat the ENTER key like a TAB key... Is there an easy way to do this? Click to expand... Enter Instead of Tab <URL:http://blogs.duncanmackenzie.net/duncanma/archive/2004/12/13/936.aspx>