vote up 12 vote down star
5

i have a scenario. (Windows form, c#.Net )

  1. There is a main form which host some user control.
  2. user control does some heavy data operation, as such if i dirctly call the Usercontrol_Load method the UI become non responsive for the duration for load method execution.
  3. To overcome this i load data on different thread, (trying to change existing code as little as i can)
  4. I used a background worker thread which will be loading the data and when done will notify the application that it has done its work.
  5. NOW came a real problem, all the UI (main form and its child usercontrls) was created on primary main thread. In the LOAD method of the usercontrl i'm fetching data based on the values of some control(like textbox) on userCoontrl.

Pseudocode wud look like this

//CODE 1

UserContrl1_LOadDataMethod()
{

    if(textbox1.text=="MyName") <<======this gives exception
    {
        //Load data correspondin to "MyName"
        //Populate a globale variable List<string> which will be binded to grid at some later stage
    }
}

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

To know more on this i did some 'googling' and suggestion came up like using the following code

//CODE 2

UserContrl1_LOadDataMethod()
{
    if(InvokeRequired) // Line #1
    {

        this.Invoke(new MethodInvoker(UserContrl1_LOadDataMethod));
        return;
    }

    if(textbox1.text=="MyName") //<<======Now it wont give exception**
    {
    //Load data correspondin to "MyName"
        //Populate a globale variable List<string> which will be binded to grid at some later stage
    }
}

BUT BUT BUT... it seems i m back to square one. The Application again become non responsive, seems like because of the execution of the Line #1 if condition, the loading task is again done by parent thread and not the third that i spawned

i dont know whether i perceived this right or wrong. i'm naive to threading.

How do I resolve this and also what is the effect of execution of Line#1 if block?

Situation is this , i want to load data into a globle variable based on the value of a contrl. i Dont want to change the value of a contrl from the child thread.im not goin to do it ever from child thread.

So only aceessing the value so that corresponding data can be fetched from DB.

flag

55% accept rate

14 Answers

vote up 11 vote down check

[EDIT] As per SilverHorse's update comment, the solution you want then should look like:

UserContrl1_LOadDataMethod()
{
    string name = "";
    if(textbox1.InvokeRequired)
    {
        textbox1.Invoke(new MethodInvoker(delegate { name = textbox1.text; }));
    }
    if(name == "MyName")
    {
        // do whatever
    }
}

Do your serious processing in the separate thread before you attempt to switch back to the control's thread. For example:

UserContrl1_LOadDataMethod()
{
    if(textbox1.text=="MyName") //<<======Now it wont give exception**
    {
        //Load data correspondin to "MyName"
        //Populate a globale variable List<string> which will be
        //bound to grid at some later stage
        if(InvokeRequired)
        {
            // after we've done all the processing, 
            this.Invoke(new MethodInvoker(delegate {
                // load the control with the appropriate data
            }));
            return;
        }
    }
}
link|flag
SilverHorse, does the code work, or did you just accept this answer because it has code? – Lasse V. Karlsen Oct 21 '08 at 14:51
Also Jon's answer has helped me .Pls see comments in the answer. – SilverHorse Apr 7 at 14:49
vote up 3 vote down

You only want to use Invoke or BeginInvoke for the bare minimum piece of work required to change the UI. Your "heavy" method should execute on another thread (e.g. via BackgroundWorker) but then using Control.Invoke/Control.BeginInvoke just to update the UI. That way your UI thread will be free to handle UI events etc.

See my threading article for a WinForms example - although the article was written before BackgroundWorker arrived on the scene, and I'm afraid I haven't updated it in that respect. BackgroundWorker merely simplifies the callback a bit.

link|flag
here in this condition of mine . i m not even changing the UI. I m just accessig its current values from the child thread. any suggestion hw to implement – SilverHorse Sep 26 '08 at 21:26
You still need to marshal over to the UI thread even just to access properties. If your method can't continue until the value is accessed, you can use a delegate which returns the value. But yes, go via the UI thread. – Jon Skeet Sep 26 '08 at 21:38
Hi Jon, i belive you are heading me to the right direction. Yes i need the value without it i cant proceed further. Please could you eloborate on that ' Using a delegate which return a value'. Thanks – SilverHorse Sep 26 '08 at 21:46
Use a delegate such as Func<string>: string text = textbox1.Invoke((Func<string>) () => textbox1.Text); (That's assuming you're using C# 3.0 - you could use an anonymous method otherwise.) – Jon Skeet Sep 26 '08 at 21:49
vote up 2 vote down

Use the code found here on StackOverflow to eliminate the need to write a new delegate every time you want to call Invoke.

link|flag
vote up 1 vote down

You need to look at the Backgroundworker example:
http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx Especially how it interacts with the UI layer. Based on your posting, this seems to answer your issues.

link|flag
vote up 1 vote down

BackgroundWorker is really nice. The callback will be made on your UI thread so you can do all of your UI updates there.

link|flag
vote up 0 vote down

Controls in .Net are not generally thread safe. That means you shouldn't access a control from a thread other than the one where it lives. To get around this, you need to invoke the control, which is what your 2nd sample is attempting.

However, in your case all you've done is pass the long-running method back to the main thread. Of course, that's not really what you want to do. You need to rethink this a little so that all you're doing on the main thread is setting a quick property here and there.

link|flag
vote up 0 vote down

i guess i have not presented the question properly.

Situation is this , i want to load data into a globle variable based on the value of a contrl. i Dont want to change the value of a contrl from the child thread.im not goin to do it ever from child thread.

So only aceessing the value so that corresponding data can be fetched from DB.

link|flag
vote up 0 vote down

I have a relatively same problem.

I have a UI and wanted to load data in the background thread (an event) once data is loaded I am calling a delegate from within that event handler that is accessing the UI controls and I get this error.

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

here is the code to call event and delegate in the parameter object

 this.View.ShowAnalysis = this.ShowAnalysis;
 if (GenerateAnalysis != null)
  GenerateAnalysis(this, new DataEventArgs<IGridRptView>(this.View));

and in the event handler i am calling the delegate

    public void OnGenerateAnalysis(object sender, DataEventArgs<IGridRptView> e)
    {
        try
        {
            Dictionary<string, DataSet> dictData = new Dictionary<string, DataSet>(1);
            e.Data.Report.LoadData(e.Data.ReportName, ref dictData, true);
            e.Data.DictDataSets = dictData;
            e.Data.ShowAnalysis();
        }
        catch (Exception _ex)
        {
            System.Console.Write(_ex.Message);
        }
    }

delegate calls the method successfully but when I try add anything to the control this raises exception:

this is the method that is called for delegate:

    public void ShowAnalysis()
    {
        Infragistics.Win.UltraWinTabControl.UltraTabStripControl _reportTabStrip = View.ReportTabStrip;
        _reportTabStrip.Tabs.Clear();
        IEnumerator enumTabs = View.Report.Tabs.GetEnumerator();
        DataSet ds = null;
        while (enumTabs.MoveNext())
        {

            TabInfo tabinfo = (TabInfo)((KeyValuePair<string,TabInfo>)enumTabs.Current).Value;
            if (View.DictDataSets.TryGetValue(tabinfo.Key, out ds))
            {
                tabinfo.Data = ds;
            }
            _reportTabStrip.Tabs.Add(tabinfo.Key, tabinfo.ToString());
        }
        View.ReportTabStrip = _reportTabStrip;            
        CancelStatusBusy(this,new EventArgs());
        CancelProgressBar(this, new EventArgs());
    }

looking forward to a solution.

link|flag
I think I am able to resolve it. – quadri Oct 21 '08 at 15:06
vote up 0 vote down

I have had this problem with the FileSystemWatcher and found that the following code solved the problem:

fsw.SynchronizingObject = this

The control then uses the current form object to deal with the events, and will therefore be on the same thread.

link|flag
vote up 0 vote down

thanks lot ...... good job...

link|flag
vote up 0 vote down

The cleanest (and proper) solution for UI cross-threading issues is to use SynchronizationContext, see Synchronizing calls to the UI in a multi-threaded application article, it explains it very nicely.

link|flag
vote up 0 vote down

For anyone else that is dealing with this issue, take a look at this article.

I found it really interesting and it works quite well.

link|flag
vote up 0 vote down

Hi I've used this and getting the "Cross-thread operation not valid: Control '' accessed from a thread other than the thread it was created on" exception still

public partial class Form1 : Form { delegate Control ControlCreateDelegate(); private delegate void SetNewControlCallback(); Control c;

public Form1() { InitializeComponent();

        ControlCreateDelegate cdr = new ControlCreateDelegate(CreateMyControl);
        cdr.BeginInvoke(new AsyncCallback(ControlCreationFinished), null);

    }

Control CreateMyControl() { return new ClassLibrary1.MyUserControl().CreateMyControl(); } void ControlCreationFinished(IAsyncResult ar) { int id = Thread.CurrentThread.ManagedThreadId; c = cdr.EndInvoke(ar); c.Text = String.Format("Textbox created by thread {0}", Thread.CurrentThread.ManagedThreadId); c.Width = TextRenderer.MeasureText(c.Text, c.Font).Width; c.Location = new Point(0, 100); this.Invoke( new MethodInvoker(SetNewControl)); this.EnableButton(); } void SetNewControl() { int id = Thread.CurrentThread.ManagedThreadId; if (InvokeRequired) { SetNewControlCallback callBack = new SetNewControlCallback(SetNewControl); this.Invoke(new MethodInvoker(callBack)); //return; } else this.panel1.Controls.Add(c); //// <<< Getting error at this line } }

Could some one help?

Thanks, Kathir

link|flag
vote up 0 vote down

Hi I've used this and getting the "Cross-thread operation not valid: Control '' accessed from a thread other than the thread it was created on" exception still

public partial class Form1 : Form { delegate Control ControlCreateDelegate(); private delegate void SetNewControlCallback(); Control c;

public Form1() { InitializeComponent();

        ControlCreateDelegate cdr = new ControlCreateDelegate(CreateMyControl);
        cdr.BeginInvoke(new AsyncCallback(ControlCreationFinished), null);

    }

Control CreateMyControl() { return new ClassLibrary1.MyUserControl().CreateMyControl(); } void ControlCreationFinished(IAsyncResult ar) { int id = Thread.CurrentThread.ManagedThreadId; c = cdr.EndInvoke(ar); c.Text = String.Format("Textbox created by thread {0}", Thread.CurrentThread.ManagedThreadId); c.Width = TextRenderer.MeasureText(c.Text, c.Font).Width; c.Location = new Point(0, 100); this.Invoke( new MethodInvoker(SetNewControl)); this.EnableButton(); } void SetNewControl() { int id = Thread.CurrentThread.ManagedThreadId; if (InvokeRequired) { SetNewControlCallback callBack = new SetNewControlCallback(SetNewControl); this.Invoke(new MethodInvoker(callBack)); //return; } else this.panel1.Controls.Add(c); //// <<< Getting error at this line } }

Thanks For help.

Kathir

link|flag

Your Answer

Get an OpenID
or

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