P
Paul Tomlinson
OK, I have a multi-threaded application.
I have a master thread which calls a delegate which I want the child thread
to execute but that is not happening, instead the master thread is running
the code in the delegate function. I know this as I can see the thread
id's.
This is what I *want* to happen
i.e.
(Master Thread
this.Invoke( DelegateA )
.....
(Child Thread)
private void DelegateFunction()
{
....
}
Is there anyway I can get this to happen?
Ta.
I have a master thread which calls a delegate which I want the child thread
to execute but that is not happening, instead the master thread is running
the code in the delegate function. I know this as I can see the thread
id's.
This is what I *want* to happen
i.e.
(Master Thread

this.Invoke( DelegateA )
.....
(Child Thread)
private void DelegateFunction()
{
....
}
Is there anyway I can get this to happen?
Ta.