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.Activa te();
}
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.Activa te();
}
Comment