Is there a nice and easy way to do stack trace in Visual Studio .Net 2003? I am investigating a crash and would like to know what function is calling what function right before crash?
Stack Trace
Collapse
X
-
Learn how to use the Visual Studio debugger.
In a debug session you can click on Debug on the task bar and select "Call Stack" from the menu. The yellow arrow is where you are. If you click on the previous funciton, the debugger will take you to the linen of code where the call occrred and identify it with a green triangle.
Please do not get in the habit of putting nifty displays all over your code.Comment
Comment