// A static method to close the SplashScreen public static void CloseForm() { if (ms_frmSplash != null && ms_frmSplash.IsDisposed == false) { // Make it start going away. ms_frmSplash.m_dblOpacityIncrement = -ms_frmSplash.m_dblOpacityIncrement; } ms_oThread = null; // we don't need these any more. ms_frmSplash = null; }
// A private entry point for the thread. private static void ShowForm() { ms_frmSplash = new SplashScreen(); System.Windows.Forms.Application.Run(ms_frmSplash); }
// A private entry point for the thread. static private void ShowForm() { ms_frmSplash = new SplashScreen(); Application.Run(ms_frmSplash); }