Jump to content

VC++ 6 Property Sheet/Property Page


Recommended Posts

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


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...