Hide form on startup?
How do I hide my form the second it starts? I don't want the user to see the GUI because the app I'm working on is done in the background, all the "controls/functions" will be done via NotifyIcon.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Suthish NairPosted Mar 18, 2011, 11:12 AM
FroglegPosted Mar 18, 2011, 8:13 AM
private void Form1_Load(object sender, EventArgs e)
{
this.WindowState = FormWindowState.Minimized;
this.ShowInTaskbar = false;
}
Suthish NairPosted Mar 18, 2011, 12:10 AM