I have form which is opened using ShowDialog Method. In this form i have a Button called More.
If we click on More it should open another form and it should close the curren
//button1 will be clicked to open a new form
private void button1_Click(object sender, EventArgs e)
{
this.Visible = false; // this = is the current form
SignUp s = new SignUp(); //SignUp is the name of my other form
s.Visible = true;
}