[Problem Solving] The Inter-thread operation is invalid: access the control from a thread that does not create the control "textBox1". The control textbox1

Source: Internet
Author: User

[Problem Solving] The Inter-thread operation is invalid: access the control from a thread that does not create the control "textBox1". The control textbox1
Background

A value calculated by an auxiliary thread is assigned to textBox1.text;

Solution

1. Add the following directly in the form constructor:

System. Windows. Forms. Control. checkforillegalcrossthreadcils = false;

The validity check of all controls is disabled.

 

2. Solve the problem through proxy (msdn)

Private delegate void SetTextCallback (string text); // call the following method to assign a value to textBox1.text: private void SetText (string text) {// InvokeRequired needs to compare the call thread ID and creation thread ID // if they are different, return true if (this. textBox1.InvokeRequired) {SetTextCallback d = new SetTextCallback (SetText); this. invoke (d, new object [] {text});} else {this. textBox1.Text = text ;}}

Delegate in. NET is used here.

For more information about delegate, see Delegate in C #.

 

[Reference] The Inter-thread operation is invalid: It is accessed by a thread that does not create the control "textBox1 ".

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.