Beispiel #1
0
 public void GetbigpointURLCallback(IBPProvider provider, IBPResponse response)
 {
     if (response.SuccessCode != 1)
     {
         MyMessageBox.Show("");
     }
     else
     {
         lastUpdatedBPURL = DateTime.Now;
         bigpointURL      = response.URL;
         try
         {
             if (bigpointURL.Length > 0)
             {
                 Process.Start(bigpointURL);
             }
         }
         catch (Exception)
         {
             this.fireURLError();
         }
     }
 }
 public void GetbigpointURLCallback(IBPProvider provider, IBPResponse response)
 {
     if (response.SuccessCode != 1)
     {
         MyMessageBox.Show("");
     }
     else
     {
         lastUpdatedBPURL = DateTime.Now;
         bigpointURL = response.URL;
         try
         {
             if (bigpointURL.Length > 0)
             {
                 Process.Start(bigpointURL);
             }
         }
         catch (Exception)
         {
             this.fireURLError();
         }
     }
 }