i have a scenario. (Windows form, c#.Net )
- There is a main form which host some user control.
- 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.
- To overcome this i load data on different thread, (trying to change existing code as little as i can)
- 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.
- 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.
