V
Vivek Sharma
How can I close a form in C#?
Here is the code that I am using but closes everything?
private void frmSplash_Click(object sender, EventArgs e)
{
this.Close();
Form frmLogin = new frmLogin();
frmLogin.Show();
frmLogin.Activate();
}
Here is the code that I am using but closes everything?
private void frmSplash_Click(object sender, EventArgs e)
{
this.Close();
Form frmLogin = new frmLogin();
frmLogin.Show();
frmLogin.Activate();
}