How to debug a program using Visual Studio? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T23:10:33Zhttp://stackoverflow.com/feeds/question/360912http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/360912/how-to-debug-a-program-using-visual-studio0How to debug a program using Visual Studio?Ian Boyd2008-12-11T21:05:24Z2009-03-23T14:55:31Z
<p>If an application†crashes:</p>
<p><img src="http://i40.tinypic.com/2jdrqr9.jpg" alt="alt text" /></p>
<p>i hit "Debug" and Visual Studio is my currently registered Just-In-Time (JIT) debugger:</p>
<p><img src="http://i39.tinypic.com/2eczzfc.jpg" alt="alt text" /></p>
<p>Visual Studio appears, but there's no way to debug anything:</p>
<p><img src="http://i40.tinypic.com/29xaowm.jpg" alt="alt text" /></p>
<ul>
<li>i do not see any disassembly.</li>
<li>i do not see any symbols</li>
<li>i do not see reconstructed source code from reflection</li>
<li>i do not see any registers</li>
<li>the call stack is empty</li>
</ul>
<p>Other JIT debugger products are able to show disassembly, but they are either command-line based (<a href="http://www.microsoft.com/whdc/devtools/debugging/default.mspx" rel="nofollow">Debugging Tools for Windows</a>), or do not support symbols (<a href="http://www.ollydbg.de/" rel="nofollow">OllyDbg</a>, <a href="http://en.wikipedia.org/wiki/Borland%5FDelphi" rel="nofollow">Delphi</a>). Additionally, my question is about debugging using Visual Studio, since i already have it installed, and is already my registered JIT.</p>
<p>How do you debug a program using Visual Studio?</p>
<p><strong>Alternatively</strong>: has anyone written a graphical debugger that supports the Microsoft symbol server?</p>
<p>†not my application</p>
http://stackoverflow.com/questions/360912/how-to-debug-a-program-using-visual-studio/360960#3609600Answer by Rich B for How to debug a program using Visual Studio?Rich B2008-12-11T21:14:05Z2008-12-11T21:14:05Z<p>Assuming this is your application that you wrote in VS, just press F5 to run the program and either use a breakpoint, or manually break the program to start debugging.</p>
http://stackoverflow.com/questions/360912/how-to-debug-a-program-using-visual-studio/362926#3629260Answer by Daok for How to debug a program using Visual Studio?Daok2008-12-12T14:37:09Z2008-12-12T14:37:09Z<p>If you do not have the Express edition (example you have the VS2005 Pro) you can debug remotly.</p>
<p>You will need to get your CD and install the remote tool on the client desktop. Once this is installed in the desktop you will be able to link the client to your desktop when exception raise. This will require that your client has the .pdb on his side.</p>
<p>You can get more information at <a href="http://msdn.microsoft.com/en-us/library/bt727f1t.aspx" rel="nofollow">MSDN</a> and <a href="http://support.microsoft.com/kb/910448" rel="nofollow">here</a></p>