CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Jun 2010
    Posts
    136

    Help needed in Creating Forms

    Hi
    I am creating forms for my application. I want buttons like "Back", "Next", "Final" and "Cancel". I don't want to load four dialogs. I want all those dialogs to load in one dialog. Which is the best way to make this.

    Regards
    ABM

  2. #2
    GCDEF is offline Elite Member Power Poster
    Join Date
    Nov 2003
    Location
    Florida
    Posts
    12,635

    Re: Help needed in Creating Forms

    "Forms" usually implies .net, in which case this is the wrong forum. If you're not using .net, then it sounds like you want a CPropertySheet and its related CPropertyPages.

  3. #3
    Join Date
    Jun 2010
    Posts
    136

    Re: Help needed in Creating Forms

    I am creating in MFC. With Forms means where user enter their name, address etc information. Sorry for the confustion. Please correct if i am wrong, with property sheets and property pages it will be tab windows. I don't want the Tab, i want to create forms where user can navigate from one form to another form using "Back", "Next" etc buttons. I guess simple example of what i want to create in MFC Dialog Based application is web forms.

    Regards
    ABM

  4. #4
    GCDEF is offline Elite Member Power Poster
    Join Date
    Nov 2003
    Location
    Florida
    Posts
    12,635

    Re: Help needed in Creating Forms

    Quote Originally Posted by ABM View Post
    I am creating in MFC. With Forms means where user enter their name, address etc information. Sorry for the confustion. Please correct if i am wrong, with property sheets and property pages it will be tab windows. I don't want the Tab, i want to create forms where user can navigate from one form to another form using "Back", "Next" etc buttons. I guess simple example of what i want to create in MFC Dialog Based application is web forms.

    Regards
    ABM
    You can use a CPropertySheet as a wizard by calling SetWizardMode.

    "A key characteristic of a wizard property page is that the user navigates using Next or Finish, Back, and Cancel buttons instead of tabs."

  5. #5
    Join Date
    Jun 2010
    Posts
    136

    Re: Help needed in Creating Forms

    Thanks.

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