Good day/night to all;
As the title says, its really troublesome.
Lets say i have form1 and form2
i want form1 to hide while form2 shows, what i do is get a button and use this code:
Form2 trials = new Form2();
trials.Show();
this.Hide();
this will hide form1 and show form2
now my question is how can i close form2 and show the hiding form1 again.
I dont want to make a new form1 but show the hiding form1 herself.(yes, form1 is a girl xD)
thank you in advance.