Multithreading help
-
Is there a way in VS2005 to see all threads created? I want to see if I am creating new threads and not aborting them. Never Mind I found Debbug --> Windows --> Threads You have to start debugging first. Thanks
-
Is there a way in VS2005 to see all threads created? I want to see if I am creating new threads and not aborting them. Never Mind I found Debbug --> Windows --> Threads You have to start debugging first. Thanks
You could also keep a list of the threads that you start in an array. This might be useful for you. Dim MCol as new collection Mcol.Add(MyThread, MyIDThatIWant) Basically you can assign the the key as being any data that you may want allowing you to access the object later by that ID instead of the index. Found at: http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_22649693.html[^]