Example #1
0
 public void EnableLoginButton(Boolean Enable)
 {
     // InvokeRequired required compares the thread ID of the
     // calling thread to the thread ID of the creating thread.
     // If these threads are different, it returns true.
     if (this.buttonLogin.InvokeRequired)
     {
         EnableLoginButtonCallback d = new EnableLoginButtonCallback(EnableLoginButton);
         this.Invoke(d, new object[] { Enable });
     }
     else
     {
         // enable or disable the login button
         buttonLogin.Enabled = Enable;
     }
 }
 public void EnableLoginButton(Boolean Enable)
 {
     // InvokeRequired required compares the thread ID of the
     // calling thread to the thread ID of the creating thread.
     // If these threads are different, it returns true.
     if (this.buttonLogin.InvokeRequired)
     {
         EnableLoginButtonCallback d = new EnableLoginButtonCallback(EnableLoginButton);
         this.Invoke(d, new object[] { Enable });
     }
     else
     {
         // enable or disable the login button
         buttonLogin.Enabled = Enable;
     }
 }