hi guys
i still have the problem with the mulithreading problme..
now i wrote like
private void Do()
{
ThreadStart starter = new ThreadStart(FillCallGrid);
Thread t = new Thread(starter);
t.Start();
}
private void FillCallGrid()
{
// loaddata
Delegate upFill = new up(FillCallGrid);
this.Invoke(upFill);
}
private void FillCallGrid()
{
// fill the data into datagird
}
Now i can only see the application ui with an empty datagrid. the
application get stuck and the data never come out.
Please help la!~~~~