Despite the irony of this question, how could you hide the form or even better run the application completely?
Set WindowStateto Minimized.
WindowState
You can also hide it from Taksbar by setting ShowInTaskbar=false;
ShowInTaskbar=false;
With these two properties, you can completely control the display of your form depending on your own requirements.
, ? ? , , "", , DLL winforms, .
To start the application without pauses, make it a window service, not a winforms app
If you do not show your form, do not call out .Show()in your form Main().
.Show()
Main()
http://www.go4expert.com/forums/showthread.php?t=973 , here you can hide any window you want from C #.