How to Debug?
-
Hi , I use MVC++ editor for my vc++ program. When I try to debug it, it shows the point where an exception occured in the assembly language (Disassmebly). I dont know how to convert and find where it happened in the actual code. what do I do to find where the exception occured in my actual code? Thanks, Deepak Samuel.
-
Hi , I use MVC++ editor for my vc++ program. When I try to debug it, it shows the point where an exception occured in the assembly language (Disassmebly). I dont know how to convert and find where it happened in the actual code. what do I do to find where the exception occured in my actual code? Thanks, Deepak Samuel.
Use "Call Stack" to view history of function calls leading to exception.;) ARSALAN MALIK
-
Hi , I use MVC++ editor for my vc++ program. When I try to debug it, it shows the point where an exception occured in the assembly language (Disassmebly). I dont know how to convert and find where it happened in the actual code. what do I do to find where the exception occured in my actual code? Thanks, Deepak Samuel.
you cannot debug a program compiled in "Release Mode". if you have the source, use the call stack (as said previously) or place some breakpoints where you want to stop the execution, but be SURE you are compiling in "
DEBUG MODE
". you could also click on therebuild all
menu item ; sometimes, it is useful 'cause VC++ fails in its links. Otherwise, two choices for you : first of them, you learn pentium assembly :) second one, you let the program with its bugs and throw it to the trash...
TOXCCT >>> GEII power