Moving on the Call Stack
You can navigate through the call stack using the Up and Down commands in the Source Editor. The call stack includes all methods that have been called but have not returned
to the caller. The methods in the call stack are listed in the order in which they were called. The method that was executing when the program stopped is at the top of the stack.
To move one level up the call stack, do one of the following:
- Click the Up a Frame control

on the Source Editor tool bar.
- Press F9.
To move one level down the call stack, do one of the following:
- Click the Down a Frame control

on the Source Editor tool bar.
- Press Shift-F9.
See also:
- Threads/Stack Tab