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
private void Button1_Click(object sender, EventArgs e)
{
NewForm newForm = new NewForm(); //Create the New Form Object
this.Hide(); //Hide the Old Form
newForm.ShowDialog(); //Show the New Form
this.Close(); //Close the Old Form
}