Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on.

Greeting, I'm trying to update button status from a thread and I'm getting this error:

"Cross-thread operation not valid: Control 'btn1' accessed from a thread other than the thread it was created on."

please advice how to fix this problem.

here is my code:

 if (strMyPlayer == "Player One")
 {
      if (srReceiver.ReadLine() == "Player One says: btn1")
      {
           btn1.Text = "O";
           btn1.Enabled = false; 
      }
 }
 else
 {
      if (srReceiver.ReadLine() == "btn1")
      {
           btn1.Text = "X";
           btn1.Enabled = false;
      }     
 }
share|improve this question
Yes, duplicate. – Manfred Aug 9 '10 at 10:23
2  
there are at least 20 same questions, also first result in google query will give you solution. I really would like to hear why didn't you do any attempts to find solution. – Andrey Aug 9 '10 at 10:23

marked as duplicate by Andrey, ChrisF, abatishchev, mdb, Heinzi Aug 9 '10 at 10:28

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 2 down vote accepted

Use Control.InvokeRequired and one of Control.Invoke / Control.BeginInvoke methods.

share|improve this answer

You cannot update a UI element from a background thread. I'm guessing srReceiver runs on a background thread.

You can update it using a delegate:

btn1.Invoke(delegate {
                             btn1.Enabled = "OK";
                             btn1.Text = "X";
                      });
share|improve this answer

You should maybe use the invoke-function to run the function on the controls thread.

http://msdn.microsoft.com/en-us/library/aa288468(VS.71).aspx

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.