Exemplo n.º 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);
     }
 }
Exemplo n.º 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());
     }
 }
Exemplo n.º 3
0
 private void AtomManagerInstance_DialError(object sender, DialErrorEventArgs e)
 {
     ConnectionDialog    += e.Message + Environment.NewLine;
     IsDisconnected       = true;
     IsConnecting         = false;
     IsConnected          = false;
     IsConnDisconnAllowed = true;
 }
Exemplo n.º 4
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());
     }
 }
Exemplo n.º 5
0
 private static void AtomManagerInstance_DialError(object sender, DialErrorEventArgs e)
 {
 }