Visual Studio 2005 C++ debugger keeps stepping into disassembly view - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T14:46:09Z http://stackoverflow.com/feeds/question/263752 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/263752/visual-studio-2005-c-debugger-keeps-stepping-into-disassembly-view 1 Visual Studio 2005 C++ debugger keeps stepping into disassembly view mda 2008-11-04T22:41:26Z 2008-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#270341 1 Answer by svlists for Visual Studio 2005 C++ debugger keeps stepping into disassembly view svlists 2008-11-06T21:25:31Z 2008-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>