We have a C ++ Win32 application that appears using Qt QProcess (certainly the shell for CreateProcess ()), a secondary โsubordinateโ program.
Unfortunately, when debugging a system using Visual Studio 2008, the debugger does not automatically join the spawned process.
I know that it is possible to programmatically start a debugger breakpoint using __debugbreak (), but is it possible for a subordinate program to select the "Select a program to debug" window immediately upon startup, since at the moment we must participate in the race manually bind to a new process ?
source
share