Is it possible to communicate with the Visual Studio debugger programmatically while debugging? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T16:51:21Zhttp://stackoverflow.com/feeds/question/201504http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/201504/is-it-possible-to-communicate-with-the-visual-studio-debugger-programmatically-wh2Is it possible to communicate with the Visual Studio debugger programmatically while debugging?ProfK2008-10-14T14:55:20Z2008-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#2015370Answer by TraumaPony for Is it possible to communicate with the Visual Studio debugger programmatically while debugging?TraumaPony2008-10-14T15:02:58Z2008-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#2015511Answer by Rob Walker for Is it possible to communicate with the Visual Studio debugger programmatically while debugging?Rob Walker2008-10-14T15:05:40Z2008-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>