D
Dinesh Jain
Hi All,
First of all let me make the problem generic!
I have three function A(),B() & C().
From main function function I call them in sequence like this -
public function MyMain()
A()
B()
C()
End Function
B() shuold be executed after A() & C() should be executed after B().
But my problem is is to put only B() in a subthread.
I want B() to be put in a subthread because I create UI in A() and
want it to be resposive for user events when B() is being executed.
How can we tell C() not te execute unless B() finishes?
Please help,
Thanks in advance,
-Regards,
Dinesh
First of all let me make the problem generic!
I have three function A(),B() & C().
From main function function I call them in sequence like this -
public function MyMain()
A()
B()
C()
End Function
B() shuold be executed after A() & C() should be executed after B().
But my problem is is to put only B() in a subthread.
I want B() to be put in a subthread because I create UI in A() and
want it to be resposive for user events when B() is being executed.
How can we tell C() not te execute unless B() finishes?
Please help,
Thanks in advance,
-Regards,
Dinesh