|
Cross-thread operation not valid: Control 'progressBar1' accessed from a thread other than the thread it was created on
You will get following error when you try to update a windows form control from a separate thread.
"Cross-thread operation not valid: Control 'progressBar1' accessed from a thread other than the thread it was created on."
This article guides you on how to overcome this problem.
Problem To reproduce this error, insert a progress bar control (progressbar1) on your form and insert a button(btnStart).
private void btnStart_Click(object sender, EventArgs e) { progressBar1.Minimum = 0; progressBar1.Maximum = 100;
System.Threading.Thread t1 = new System.Threading.Thread(startProgress); t1.Start(); } void startProgress() { for (int i = 0; i { progressBar1.Value = i; //You will get error at this line System.Threading.Thread.Sleep(100); } }
Solution private void btnStart_Click(object sender, EventArgs e) { progressBar1.Minimum = 0; progressBar1.Maximum = 100; System.Threading.Thread t1 = new System.Threading.Thread(startProgress); t1.Start(); } void startProgress() { for (int i = 0; i { SetControlPropertyValue(progressBar1, "value", i); //This is a thread safe method System.Threading.Thread.Sleep(100); } } delegate void SetControlValueCallback(Control oControl, string propName, object propValue); private void SetControlPropertyValue(Control oControl, string propName, object propValue) { if (oControl.InvokeRequired) { SetControlValueCallback d = new SetControlValueCallback(SetControlPropertyValue); oControl.Invoke(d, new object[] { oControl, propName, propValue }); } else { Type t = oControl.GetType(); PropertyInfo[] props = t.GetProperties(); foreach (PropertyInfo p in props) { if (p.Name.ToUpper() == propName.ToUpper()) { p.SetValue(oControl, propValue, null); } } } }You can apply same solution to any windows control. All you have to do is, copy SetControlValueCallback delegate and SetControlPropertyValue function from above code. For example if you want to set property of a label, use SetControlPropertyValue function. SetControlPropertyValue(Label1, "Text", i.ToString()); Make sure you supply property value in correct type. In above example Text is a string property. This is why I am converting variable i to string.
Comments/Questions
Add New Comment/QuestionThis is not a control problem. This is a general problem with any control. You can solve it in three ways.
(1)Remove this line in your aspx page source -> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
(2) Or go to GoogleMapForASPNet.ascx source and change <div id="GoogleMap_Div" style="width:<%=GoogleMapObject.Width %>;height:<%=GoogleMapObject.Height %>;"> to <div id="GoogleMap_Div" style="width:<%=GoogleMapObject.Width %>;height:<%=GoogleMapObject.Height %>;position:relative;">
(3)Set control container (DIV) to fixed width and height. Then apply percentage width and height to control.
=> Shabdar (Wednesday 26-Mar-08 01:54 PM) | | | Reply | |
|
|