I've always used this.Hide
in Form1_Load(...)
when I needed to and it has always worked. But now in a new project, this.Hide
does not work anywhere and this is the only code I have!
private void Form1_Load(object sender, EventArgs e)
{
this.Visible = false;
this.Hide();
}
Why doesn't the Form Hide?