Example #1
1
 public bool Start()
 {
     try
     {
         if (isConnected)
             return true;
         _app = new ClientAdapterToolkitApp();
         initTables();
         return true;
     }
     catch (Exception ee)
     {
         debug(ee.Message+ee.StackTrace);
         return false;
     }
 }
Example #2
0
 public new bool Start()
 {
     try
     {
         if (isConnected)
         {
             return(true);
         }
         _app = new ClientAdapterToolkitApp();
         initTables();
         return(true);
     }
     catch (Exception ee)
     {
         debug(ee.Message + ee.StackTrace);
         if (ee.Message.ToUpper().Contains("UNABLE TO LOAD DLL"))
         {
             debug("Please ensure you have followed setup instructions at: " + CONFIGURL);
             try
             {
                 System.Diagnostics.Process.Start(CONFIGURL);
             }
             catch { }
         }
         return(false);
     }
 }
Example #3
0
 public bool Start()
 {
     try
     {
         if (isConnected)
         {
             return(true);
         }
         _app = new ClientAdapterToolkitApp();
         initTables();
         return(true);
     }
     catch (Exception ee)
     {
         debug(ee.Message + ee.StackTrace);
         return(false);
     }
 }
Example #4
0
 public new bool Start()
 {
     try
     {
         if (isConnected)
             return true;
         _app = new ClientAdapterToolkitApp();
         initTables();
         return true;
     }
     catch (Exception ee)
     {
         debug(ee.Message+ee.StackTrace);
         if (ee.Message.ToUpper().Contains("UNABLE TO LOAD DLL"))
         {
             debug("Please ensure you have followed setup instructions at: " + CONFIGURL);
             try
             {
                 System.Diagnostics.Process.Start(CONFIGURL);
             }
             catch { }
         }
         return false;
     }
 }