static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); window = new EVEIntel(); new Thread(new ThreadStart(startWindow)).Start(); initMonitor(); runMonitor(); while (true) { Thread.Sleep(5); } }