I don't want the form to be shown at all on startup. The form can be hidden on another event on the form like a button click but that won't do.
On Form1_Load this.Visible = false; or this.Hide(); won't hide the form.
I even tried this:
and the form still shows...Code:static void Main()
{
Form1 frm1 = new Form1();
frm1.Visible = false;
Application.Run(frm1);
}
is there any way to do this?
