Exemple #1
0
 /// <summary>
 /// Colse the SplashForm
 /// </summary>
 public static void CloseDataTransfer()
 {
     if (waitingThread == null || TransferForm == null)
     {
         return;
     }
     try
     {
         TransferForm.Invoke(new MethodInvoker(TransferForm.Close));
     }
     catch (Exception)
     {
     }
     waitingThread = null;
     TransferForm  = null;
 }