Click here to Skip to main content
Licence 
First Posted 9 Apr 2000
Views 80,564
Bookmarked 29 times

Simple wizard property sheet class

By | 14 Apr 2000 | Article
A simply class to turn CPropertySheet into wizard mode without needing to alert the property pages within
  • Download source files - 2 Kb
  • Introduction

    Windows allows a simple transition of your property sheet into wizard mode. However, this transition requires the property pages within the sheet to know about this. They should call SetWizardButtons() with the correct parameters on becoming active - which of course breaks encapsulation. The page needs to know it's part of wizard-style property sheet, and it needs to know its position within the sheet.

    My CWizardPropertySheet class solves the problem for simple wizards by having the CPropertySheet-derived class handle the appropriate SetWizardButtons() calls by itself.

    The CWizardPropertySheet class

    The CWizardPropertySheet is a drop-in replacement for CPropertySheet. It works both in wizard and "normal" modes. (The application must call SetWizardMode() to activate wizard mode, just as it would with a normal CPropertyPage.)

    To use it, simply #include "WizardPropertySheet.h" and use CWizardPropertySheet wherever you would use CPropertySheet. (Alternatively, you may import the class by ClassWizard.)

    What does it do?

    The CWizardPropertySheet shows the property pages added by AddPage() call in order they have been added. It disables the Back button on the first page, and it changes Next to Finish on the last page.

    How does it accomplish that?

    The message map of the class contains handlers:
    ON_BN_CLICKED(ID_WIZBACK, OnWizBack)
    ON_BN_CLICKED(ID_WIZNEXT, OnWizNext)
    

    The ID_WIZBACK and ID_WIZNEXT constants are defined in afxres.h. The handlers do the proper SetWizardButtons() call and then call Default(); to allow page change to proceed.

    Don't forget!

    Don't forget to call SetWizardMode() before DoModal() to put the property sheet into wizard more.

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here

    About the Author

    Petr Novotny



    Czech Republic Czech Republic

    Member



    Sign Up to vote   Poor Excellent
    Add a reason or comment to your vote: x
    Votes of 3 or less require a comment

    Comments and Discussions

     
    You must Sign In to use this message board. (secure sign-in)
     
    Search this forum  
     FAQ
        Noise  Layout  Per page   
      Refresh
    QuestionIn CPropertySheet how to set both Wizard mode & Normal mode for an application? Pinmembershan_chandru3:47 20 Apr '09  
    Generaluseless example Pinmemberbfawad7:12 14 Aug '07  
    Generaland a rude comment PinmemberK(arl)21:02 6 Sep '07  
    Generalowner drawn wizzard buttons Pinmemberavishap5:55 1 Jun '05  
    Questioncan i make my dialog resource class inherit from this? Pinmemberspoongirl3:15 8 May '02  

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

    Permalink | Advertise | Privacy | Mobile
    Web04 | 2.5.120517.1 | Last Updated 15 Apr 2000
    Article Copyright 2000 by Petr Novotny
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid