Visual Basic :


me.close()
form2.showdialog()

Visual C# :

this.close();
Form2 frm2 = new Form2();
frm2.showdialog();
__________________