Exercise 7.5: Viewing the call stack

Before you begin, you must complete Exercise 7.4: Displaying a variable.

The Debug view in the upper left pane, lists all call stack entries. It contains a tree view for each thread. The thread can be expanded to show every program, module, procedure and method that is on the stack at the current execution point. If you double-click a stack entry that has debug data, the corresponding source will show up. Otherwise the message No Debug data available appears in the debug editor. In the Debug view, expand the stack entry of Thread:1 if it is not expanded already, by clicking the plus sign + in front of it.
Viewing the call stack

You have expanded a thread to show every program, module, procedure and method on the call stack at the current execution point and now you are ready to begin Exercise 7.6: Closing the debug session.