static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); #if !DEBUG Application.ThreadException += ReportError.UnhandledExceptionHandler; #endif FrmSplashScreen progress = new FrmSplashScreen(); progress.ShowDialog(); progress.Dispose(); if (!String.IsNullOrEmpty(ErrorMessage)) { MessageBox.Show(ErrorMessage); if (!String.IsNullOrEmpty(URL)) { System.Diagnostics.Process.Start(URL); } return; } Application.Run(new FrmMain()); }
static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); #if !DEBUG Application.ThreadException += ReportError.UnhandledExceptionHandler; #endif FrmSplashScreen progress = new FrmSplashScreen(); progress.ShowDialog(); progress.Dispose(); Application.Run(new FrmMain()); }
static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); #if !DEBUG Application.ThreadException += ReportError.UnhandledExceptionHandler; #endif FrmSplashScreen progress = new FrmSplashScreen(); progress.ShowDialog(); progress.Dispose(); if (!String.IsNullOrEmpty(ErrorMessage)) { MessageBox.Show(ErrorMessage); if (!String.IsNullOrEmpty(URL)) System.Diagnostics.Process.Start(URL); return; } Application.Run(new FrmMain()); }