joonas
September 20th, 2005, 01:35 PM
I want to trap Ctrl+Tab to move focus from my dialog to another window...however, my WM_KEYDOWN doesn't trigger unless I specify:
case WM_GETDLGCODE:
{
return DLGC_WANTALLKEYS;
}
This does on the other hand put WS_TABSTOP out of order, something which I also need to work properly. I tried implementing tab-stop functionality myself...but I got this annoying beeping instead then...and really I would prefer if Windows could handle it itself. is it possible to do this?
P.S.
Turning off all beeps like it says in this thread is not an option either...I don't want to mess with the users settings.
(http://www.codeguru.com/forum/showthread.php?t=236617)
D.S.
Thanks!
Jonas
case WM_GETDLGCODE:
{
return DLGC_WANTALLKEYS;
}
This does on the other hand put WS_TABSTOP out of order, something which I also need to work properly. I tried implementing tab-stop functionality myself...but I got this annoying beeping instead then...and really I would prefer if Windows could handle it itself. is it possible to do this?
P.S.
Turning off all beeps like it says in this thread is not an option either...I don't want to mess with the users settings.
(http://www.codeguru.com/forum/showthread.php?t=236617)
D.S.
Thanks!
Jonas