CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Guest

    How to develop a wizard dialog ?

    Dear Sir/Madam,

    I am working for a company in Vietnam as software designer. I am interested in the knowledge that you distributed to everyone. I learnt from you lots of Microsoft Visual C++ programming knowledge.
    I would like to ask you a question regarding how to develop a wizard dialog using VC++:
    I am developing a windows-application that will show a wizard to help user to do a task when user selects a menu item on menu bar. The problem here is I do not know how to develop a wizard dialog like Microsoft and some software did!
    Could you please advise and send me an example source code? I am using Microsoft Visual C++ 6.0

    Thanks so much for your help.
    Looking forward to hearing from your responding.

    Best regards,

    Tuyen Phan
    Software Designer
    [email protected]
    TMA Co., Vietnam




  2. #2
    Join Date
    Apr 1999
    Posts
    27,449

    Re: How to develop a wizard dialog ?

    Check out CPropertySheet and CPropertyPage for doing a "wizard" dialog.

    Basically, the CPropertyPage and CPropertySheet is used to set this up, since a "wizard" is really a tab folder with the pages stacked directly on top of each other.

    Regards,

    Paul McKenzie


  3. #3
    Join Date
    May 1999
    Posts
    42

    Wizards

    Developing a wizrd is something the MFC support handles quite well.

    You simply need to setup a propertyshhet with several property pages added to it. This can be used in either the "Tab" mode or the Wizard mode depending on how you set a flag known as WizMode. You can add the next, back and finish buttons to your requirements.

    (Sorry I haven't got any example code handy)

    SB

    PS Forever Everton


  4. #4
    Join Date
    May 1999
    Location
    Toulouse, France
    Posts
    171

    Re: How to develop a wizard dialog ?

    Have a look to these sites:

    www.itlibrary.com/library/0789708930/ch9.htm
    www.xyon.com.au/felixb/mfcwiz.htm

    HTH

    K.


    Ash to ash and clay to clay, if the enemy doesn't get you, your own folk may.
    We're talking ****, 'cause life is a 'biz
    You know it is
    Everybody tryin' to get rich
    God ****!
    All I wanna do is live !

    KoRn, Children of the Korn

  5. #5
    Join Date
    May 1999
    Posts
    2

    I've got it ! Thank you guys so much !

    Thanks so much for your help !!!



  6. #6
    Join Date
    May 1999
    Posts
    2

    I've got it ! Thank you guys so much !

    Thanks so much for your help !!!

    Tuyen Phan



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured