public void Start()
 {
     isStarted = true;
     form      = new JustInTimeSplashScreenForm();
     //form = new ApplicationSplashScreenForm();
     form.Show();
     System.Windows.Forms.Application.DoEvents();
 }
 public void Stop()
 {
     if (form != null)
     {
         form.Hide();
         form.Close();
         form = null;
     }
     isStarted = false;
 }