I am doing an application a Windows Form application. At first, a certain form appears, and after the user hits the next button, this form should be hidden and another form
To link to a form you need:
Form2 form2 = new Form2(); form2.show(); this.hide();
then hide the previous form