raduking Posted September 23, 2004 Share Posted September 23, 2004 When I try to create a modeless Property Sheet the tab switching between the Property pages won't work... when I try the same on a modal Property Sheet it works flawlessly... is anybody experiencing this problem or maybe knows how to fix it ? modeless: CWnd *pDesk = m_pMainWnd->GetDesktopWindow(); m_pSettings = new CPropertySheetSettings("Settings", pDesk); m_pSettings->AddPage(m_pPage1); m_pSettings->AddPage(m_pPage2); m_pSettings->Create(pDesk); modal: m_pSettings = new CPropertySheetSettings("Settings"); m_pSettings->AddPage(m_pPage1); m_pSettings->AddPage(m_pPage2); m_pSettings->DoModal(); Link to comment Share on other sites More sharing options...
Question
raduking
When I try to create a modeless Property Sheet the tab switching between the Property pages won't work...
when I try the same on a modal Property Sheet it works flawlessly...
is anybody experiencing this problem or maybe knows how to fix it ?
modeless:
CWnd *pDesk = m_pMainWnd->GetDesktopWindow(); m_pSettings = new CPropertySheetSettings("Settings", pDesk); m_pSettings->AddPage(m_pPage1); m_pSettings->AddPage(m_pPage2); m_pSettings->Create(pDesk);modal:
m_pSettings = new CPropertySheetSettings("Settings"); m_pSettings->AddPage(m_pPage1); m_pSettings->AddPage(m_pPage2); m_pSettings->DoModal();Link to comment
Share on other sites
0 answers to this question
Recommended Posts