Tagged Questions
4
votes
6answers
728 views
What is the best way to attach a debugger to a process in VC++ at just the right point in time?
When debugging, sometimes you need to attach an already running process instead of just starting the application in a debugger.
It's common for myself to put in a Sleep() or MessageBox call, so that ...