示例#1
0
 private void ras_DialError(object sender, DialErrorEventArgs e)
 {
     if (e.RasError != RasError.Success)
     {
         this.Log("Error:" + e.RasError);
         MessageBox.Show("Could not connect to the server. Reason:" + e.RasError);
     }
 }
示例#2
0
 private void ras_DialError(object sender, DialErrorEventArgs e)
 {
     if (e.RasError != RasError.Success)
     {
         Log("Error:" + e.RasError.ToString());
         System.Windows.Forms.MessageBox.Show("Could not connect to the server. Reason:" + e.RasError.ToString());
     }
 }
示例#3
0
 private void AtomManagerInstance_DialError(object sender, DialErrorEventArgs e)
 {
     ConnectionDialog    += e.Message + Environment.NewLine;
     IsDisconnected       = true;
     IsConnecting         = false;
     IsConnected          = false;
     IsConnDisconnAllowed = true;
 }
 private void ras_DialError(object sender, DialErrorEventArgs e)
 {
     if(e.RasError != RasError.Success)
     {
         Log("Error:" + e.RasError.ToString());
         System.Windows.Forms.MessageBox.Show("Could not connect to the server. Reason:" + e.RasError.ToString());
     }
 }
示例#5
0
 private static void AtomManagerInstance_DialError(object sender, DialErrorEventArgs e)
 {
 }