i have a thread which produces multiple threads in it. how can i be sure if all the threads are completed? i have to call a method after all the threads are finished.
like this is not a duplicate like
dim thread1.start() dim thread2.start() if (all threads are finished) muFunc() end if you can see the sample code snippet below. see the code here
that is where i am stuck badly. what should i do? thanks in advance.