Consider the situation where I have two windows forms, say F1 and F2. After using F1, I have now called F2.ShowDialog().
F1
F2
F2.ShowDialog()
Add this code in the relevant place in your from f1.
Form f2 = new Form(); f2.ShowDialog();
HTH