CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2007
    Posts
    77

    Question Problem with creating wizard

    I m creating small wizard in my application to register user. the wizard has three forms. After Filling first form, user goes to second form. After filling second form when user comes back to first form, it should display the data entered by user. Then againg going to second form, data entered in second form should displayed.

    When user goes to last form and fills the required info. Then data of all the forms should inserted in database when user clicks finish button.

    Can any one tell me how to and where to store temporary data of different forms


    Thank u

  2. #2
    Join Date
    Jan 2006
    Location
    18° 32' N / 73° 52' E
    Posts
    416

    Re: Problem with creating wizard

    Well that can be done in many ways.
    You can store it in some object and on the navigation (next or previous) fill or empty the values.

    Another option would be to create an XML file.

    But if i were to create some application like this, then i would have rather made use of panels instead of different forms. This makes alot of thing easier....

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