
Tab Control Ctrl-Tab-Keys
Ernest,
Override PreTranslateMessage(..) in your dialog class and look for the key
combination that you want to use to switch tabs. Get the current active tab
with m_Tab.GetCurSel() and switch to the next tab with m_Tab.SetCurSel().
Cecil
--
-------------------------------------------
Cecil A. Galbraith
http://www.codesoup.com
Programmers Utilities/Tips
-------------------------------------------
Quote:
> Hello,
> I have a Dialog with a tab control and I want to switch between the tabs
> with Ctrl-Tab-Key. How can I do that? Who can help?
> Best regards,
> Ernst