Wizard Property Sheets and Pages
I made these two classes to add an often used feature to the property sheets/pages provided by the MFC. The new classes allow you, to easily skip certain pages when viewing the tabbed dialog. This is very usefull for installation or assistent wizards.
You can now also access the the property sheet from every page using the m_pPropSheet protected member.
Using the Classes
These classes work only in wizard mode, which is set by default, so there's no need to set it by hand. There's no way to use the extra functionlity of these classes while not in Wizard mode.To use the CWizPropertyPage, just implement your pages as decendents of CPropertyPage and then use the replace functionality of the editor to exchange every CPropertyPage with CWizPropertyPage.
To skip pages, you can either disable these page
directly, or tell the WizPropertySheet to disable a whole
range:
// I'm assuming that CPage1 - CPage3 are derived from // CWizPropertyPage CPage1 page1; CPage2 page2; CPage3 page3; CWizPropertySheet sheet; sheet.Add(page1); sheet.Add(page2); sheet.Add(page3); // Disable page 1 and 2 page1.Enable(FALSE); page2.Enable(FALSE); // Enable them via the sheet sheet.EnablePages(TRUE,1,2); // NOTE: zero based index
CWizPropertySheet
This class is derived from CPropertySheet and does add a single method:-
void EnablePages(BOOL bEnable, int nStart, int nEnd = -1);
- If bEnable is TRUE the pages get enabled, if FALSE they will be disabled
- nStart specifies the first page to enable or disable.
- nEnd specifies the last page to enable/ disable. If omitted, only the page with the index nStart will be changed.
CWizPropertyPage
This class is derived from CPropertyPage, and adds these methods:BOOL Enable(BOOL bEnable=TRUE); BOOL IsEnabled(void); virtual LRESULT GetNextPage(BOOL forward = TRUE); // protectedand these data members:
-
BOOL m_bEnabled; // protected
CWizPropertySheet *m_pPropSheet;// protected
Use Enable() to enable a page, and Enable(FALSE) to disable a page.
IsEnabled() returns the TRUE if the pages is enabled, else FALSE is returned.
m_pPropSheet allows you to access the sheet the page got added to.
In closing
Guess that's it. If you've questions, critique or if you want to thank me :), feel free to mail me.

Comments
How do i transfer data between one wizard page and the other?
Posted by Legacy on 02/12/2004 12:00amOriginally posted by: Farhan
I want to transfer data entered by the user on my first wizard page and make it visible on the second wizard page in my wizard sheet? How do i achieve it?
ReplyHeader bitmaps
Posted by Legacy on 03/31/2003 12:00amOriginally posted by: Sabotto Massimo
How can i change the header bitmap from one page to another?
I already tryed to change the m_psh.hbmHeader parameter value, but nothing changed!
Any idea?
thank you
ReplyHow do i change the title of the property page at run time?
Posted by Legacy on 02/06/2003 12:00amOriginally posted by: Hema Leon
I have 3 property pages. Title on the property page 3 is based on the selection of page 2. So how do i change the title of the property page 3?
ReplyModification to auto-set the wizard buttons
Posted by Legacy on 01/17/2002 12:00amOriginally posted by: Ian
ReplyGetNextPage not moving me to the correct page!
Posted by Legacy on 07/29/1999 12:00amOriginally posted by: Jim Carbone
Reply