Debugging a multi-threaded vb2005 app

bamasmith

New member
Joined
Dec 7, 2009
Messages
2
Programming Experience
10+
Hi folks,

I have what I believe is a basic question...
I am debugging a vb2005 application with 2 threads.
When I hit a breakpoint in one of the threads, is the other thread still running, or is it suspended as well?

Thanks,

Mark
 
A breakpoint suspends execution of the whole application with all threads.
 
Back
Top