I have a project where the startup form will have a bunch of buttons, clicking each one should open up a new form.
the question is, how do i do this?
lets say form1 is the startup form, and form2 and form3 are new forms that should be displayed, yet also link back to form1.
if from form1 i click to go to form2, do i hide or dispose of form 1? also, in the button click method, i would say:
form2 frm2 = new frm2();
frm2.Show();
now form 2 is active. but how do i get back to form 1 from here? i no longer would have access to form1, as far as i can see.