The way how I traverse through different forms are:

(There are 2 forms, form1 and form2)
This is form1:

form2 f = new form2();
f.Show();



....

And from inside form1 you could link to form2. That is cool. But if form1 disposes form2 also will dispose since it's a childform to the former.

Is there any way I could Open form2 such that if form1 is closed, form2 will still be running?

Jennifer