J
Joel Matthias
Hi,
I know this topic has been covered in various forms but I still can't
seem to come up with a solution that works correctly.
I want to create a modeless hidden form in my application. This is NOT
the main application form. The best way so far is as follows.
MyForm form = new MyForm();
form.Show();
form.Visible = false;
This works but the form is visible for a brief period. Even when I make
the form size 0,0 it's still visible for a brief time.
So is it possible to create a hidden .NET form that is never displayed
to the user?
Thanks - Joel
I know this topic has been covered in various forms but I still can't
seem to come up with a solution that works correctly.
I want to create a modeless hidden form in my application. This is NOT
the main application form. The best way so far is as follows.
MyForm form = new MyForm();
form.Show();
form.Visible = false;
This works but the form is visible for a brief period. Even when I make
the form size 0,0 it's still visible for a brief time.
So is it possible to create a hidden .NET form that is never displayed
to the user?
Thanks - Joel