Problem with Debugging/Tracing in Visual Studio 2005 : Assembly code instead of C++

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Digital Don
    New Member
    • Jan 2007
    • 19

    Problem with Debugging/Tracing in Visual Studio 2005 : Assembly code instead of C++

    Hi,

    I have been using Visual Studio 2005 for 5 months now and quite a few time I have come across a problem which is, when I write a program and try to debug and trace the error/problem in the program. using step by step procedure i.e "F10" after pressing F5 (Debug Mode) from Break Point I get disassembly code instead of showing the steps in the program...

    I dont know know why this happenes and need to get rid of this problem so that I can debug my program by tracing the normal code instead of tracing the assembly language code....

    Please help...

    Thank You in advance...

    Regards
    Digital Don
  • Banfa
    Recognized Expert Expert
    • Feb 2006
    • 9067

    #2
    Normally VS only shows assembler if it can not find the source code for the location that it is debugging.

    If you are in the assembly window and you step back from assembler only code to code that the source is available for then VS shows a mixed source and assembly view in the assembly window. However you can just close the assembly window and VS displays the source.

    Comment

    Working...