Is it possible to close a form while the constructor is executing (or simply to stop it showing at this stage)?
I have the following code:
public par
Can you make MyFunc static? and then do something like:
static void Main() { ... if (MyForm.MyFunc()) { Application.Run(new MyForm()); } }
this would essentially give you the same control over whether the form is going to be constructed or not?