Example #1
0
 //start a new thread to display splash window
 public static void StartSplash()
 {
     m_instance = new SplashWindow();
      m_instance.TopMost = true;
      InstanceCaller = new Thread(new ThreadStart(MySplashThreadFunc));
      InstanceCaller.Start();
 }