Visual Studio 2005 C++ debugger keeps stepping into disassembly view - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T14:46:09Zhttp://stackoverflow.com/feeds/question/263752http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/263752/visual-studio-2005-c-debugger-keeps-stepping-into-disassembly-view1Visual Studio 2005 C++ debugger keeps stepping into disassembly viewmda2008-11-04T22:41:26Z2008-11-06T21:25:31Z
<p>The Visual Studio 2005 C++ debugger keeps stepping into disassembly view when I "Step into" or "Step Over". This is not something I want, so I have to keep right-clicking and "Go To Source Code". </p>
<p>It doesn't always do this - I think it gets confused when stepping between different projects in the same solution (static libs, and one console app) but all the projects have default settings and the "debug" configuration is selected, and cleaning and rebuilding doesn't make any difference.</p>
http://stackoverflow.com/questions/263752/visual-studio-2005-c-debugger-keeps-stepping-into-disassembly-view/270341#2703411Answer by svlists for Visual Studio 2005 C++ debugger keeps stepping into disassembly viewsvlists2008-11-06T21:25:31Z2008-11-06T21:25:31Z<p>There is an option under the menu Tools/Options/Debugging/General.
Make sure the "Show Disassembly If Source Is Not Available.” setting is turned off.</p>
<p>You can also look at <a href="http://msdn.microsoft.com/en-us/library/85yzd16c(VS.80).aspx" rel="nofollow">General, Debugging, Options Dialog Box</a> on the MSDN site.</p>