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
you may consider this example
//Form1 Window //EventHandler Form1 frm2 = new Form1(); { frm2.Show(this); //this will show Form2 frm1.Hide(); //this Form will hide }