Associate
c# noob here but Basically im trying to link forms together
so far i managed to do the following:
add the following code to first form
it shows the Form2 fine but the first form is still there
I tried adding
in the first form but whenever I close Form2 I can still see the form1 in task manager. I tried using this.Close() instead of the hide but it closes both forms
WHat im trying to achieve is when the user clicks Next in the form1 it disappears from view and form2 appears. Like the one from installers where i can click next and back.
Thanks
so far i managed to do the following:
add the following code to first form
Code:
Form2 form = new Form2();
form.Show();
it shows the Form2 fine but the first form is still there
I tried adding
Code:
this.Hide()
WHat im trying to achieve is when the user clicks Next in the form1 it disappears from view and form2 appears. Like the one from installers where i can click next and back.
Thanks