using System; using System.Windows.Forms; namespace Browser { static class Program { [STAThread] static void Main() { try { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } catch (ArgumentOutOfRangeException ex) { MessageBox.Show(ex.StackTrace); } } } }