-
threading?
when we start a thread and give an address of sub "sub1" for example, does every thing that is called from in that sub, proccessed in our new thread? or just the lines of "sub1" one is proccessed in that thread and other linked subs are proccessed in the main thread?
-
persian_83,
everything should run on the thread you started for sub1. keep in mind if you are calling something like Crystal it may also create it's own new threads. To truly isolate (Memory and Processor)a thread(s) it would need to be launched in it's own AppDomain.