Is it possible to communicate with the Visual Studio debugger programmatically while debugging? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T16:51:21Z http://stackoverflow.com/feeds/question/201504 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/201504/is-it-possible-to-communicate-with-the-visual-studio-debugger-programmatically-wh 2 Is it possible to communicate with the Visual Studio debugger programmatically while debugging? ProfK 2008-10-14T14:55:20Z 2008-10-14T15:05:40Z <p>I would like to control options on the debugger without using the debugging GUI's, preferably from inside the code being debugged. I would think that would be quite difficult, but maybe my debugged code can request a service from independent code that will communicate with the debugger.</p> <p>This relates to <a href="http://stackoverflow.com/questions/201182/debugging-with-exceptions-how-to-work-around-break-when-thrown#201197">another question of mine</a> on controlling when to break on exceptions.</p> http://stackoverflow.com/questions/201504/is-it-possible-to-communicate-with-the-visual-studio-debugger-programmatically-wh/201537#201537 0 Answer by TraumaPony for Is it possible to communicate with the Visual Studio debugger programmatically while debugging? TraumaPony 2008-10-14T15:02:58Z 2008-10-14T15:02:58Z <p>I know that you can do it with WinDBG and OutputDebugString, but for Visual Studio, I think you have to spool off another process, pipe commands to that, and have that manipulate the Debugger API.</p> http://stackoverflow.com/questions/201504/is-it-possible-to-communicate-with-the-visual-studio-debugger-programmatically-wh/201551#201551 1 Answer by Rob Walker for Is it possible to communicate with the Visual Studio debugger programmatically while debugging? Rob Walker 2008-10-14T15:05:40Z 2008-10-14T15:05:40Z <p>You can write Visual Studio macros that can do anything the GUI can, but they can get rather involved. See the MSDN documentation on <a href="http://msdn.microsoft.com/en-us/library/xc52cke4(VS.80).aspx" rel="nofollow">Automation and Extensibility for Visual Studio</a></p> <p>Doing this from the code being debugged would be tricky, you would definitely need some new form of communication with VS, maybe a custom add-in. I don't think an independent service would fundamentally help here. The biggest problem is that your code will stop running when the debugger breaks.</p>