How can I open a new form from the main thread in C#?
At this moment I open them by using this:
System.Threading.Thread t = new System.Threading.Thread(n
Just use this
Application.Run(new OppenMainForm());