I have 2 forms (Form1 & Form2). In Form1 have button click. When we click I want to open Form2 and close Form1 completely. I have try to use:
Form2 frm = new Form2();
frm.Show();
this.Close();
but it will close all form. so i try to use:
this.Hide();
but Form1 still have processing. so does anyone know solution?