Exemplo n.º 1
0
 public void Show()
 {
     try
     {
         arg = new ThreadWaiting();
         arg.theForm = theForm;
         ThreadStart ts = new ThreadStart(arg.Run);
         theThread = new Thread(ts);
         theThread.Name = "Waiting";
         theThread.Start();
         theForm = arg.theForm;
     }
     catch { }
 }
Exemplo n.º 2
0
 public void Show()
 {
     try
     {
         arg         = new ThreadWaiting();
         arg.theForm = theForm;
         ThreadStart ts = new ThreadStart(arg.Run);
         theThread      = new Thread(ts);
         theThread.Name = "Waiting";
         theThread.Start();
         theForm = arg.theForm;
     }
     catch { }
 }
Exemplo n.º 3
0
 public void Close()
 {
     if (arg == null)
         return;
     try
     {
         if (arg != null && arg.theForm != null)
         {
             arg.theForm.HideForm();
         }
     }
     catch { }
     arg = null;
 }
Exemplo n.º 4
0
 public void Close()
 {
     if (arg == null)
     {
         return;
     }
     try
     {
         if (arg != null && arg.theForm != null)
         {
             arg.theForm.HideForm();
         }
     }
     catch { }
     arg = null;
 }