Beispiel #1
0
 protected override void MergeLibrariesAndLoadVariables()
 {
     try
     {
         foreach (MyCartes item in apis)
         {
             item.Load();
         }
         if (Abort.Length > 0)
         {
             if (isVariable(Abort))
             {
                 frpaAbort = (RPADataString)cartes.component(Abort);
             }
             else
             {
                 throw new MyException(EXIT_ERROR, Abort + " does not exist!");
             }
         }
         else
         {
             frpaAbort = null;
         }
     }
     catch (Exception e)
     {
         forensic("MyCartesProcess.MergeLibrariesAndLoadVariables", e);
         throw new MyException(EXIT_ERROR, e.Message);
     }
 }
Beispiel #2
0
 protected virtual void ShowAbortDialog(RPADataString abort)
 {
     abort.ShowAbortDialog("Press button to abort", "Closing...", "Abort");
 }