Debug exe
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
-
Hi! I write a console execute in vc. It is called by other command line. How can i make vc ide into debug it when it is been called? How can set a break in some lines? I believe it is definitely possilbe in vc, but i don't know how to operate. Thanks!
To my knowledge, Visual Studio must start the application in order to debug it.
-
To my knowledge, Visual Studio must start the application in order to debug it.
put
__asm{ int 3 };
at the beginning of the code! when the exception is raised, attach visual studio debugger to it, voila Don't try it, just do it! ;-)