hello
i am working in C#.net. I want to know how to close one form and show another one. I had done the following code
but when i close the last form activated then still it shows that the application is running. how can i completly close the first form
i am working in C#.net. I want to know how to close one form and show another one. I had done the following code
Code:
this.Hide();
MainForm frm = new MainForm();
frm.Show();
frm.Focus();
frm.Activate();
Comment