Creating an app with multiple consecutive forms
I am new to Visual studio.NET and Windows apps in general.
I am trying to create a register your software windows app.
Basically, the user runs the app, and the welcome screen appears, then they click next, and they are then asked for their details.
Now the problem is I have created two forms, Form1 containing the welcome message, and Form2 asking for the registration details. The user needs to click the Next button on Form1, to view form2, fine, but the problem is, Form2 loads up in a new window. I basically want Form2 to replace Form1. (You know the same way a typical registration app works), not load in a new window.
What is the easiest way to achieve this?
Am I on the right track in creating 2 seperate forms? Is an MDI app the right way to go here? Thing is, I don't want an MDI app for this, as then the child form has its own headings.
Can't I just hide Form1 and replace it with Form2?
Thanks
Re: Creating an app with multiple consecutive forms
Quote:
Originally posted by greg_quinn
Is an MDI app the right way to go here? Thing is, I don't want an MDI app for this, as then the child form has its own headings.
Thanks
You can always change or hide the child form titles etc.
OR
You could use a Splash form as your first form
OR
Use just one form and hide all the early controls and reveal the registration items as required.