Choose or click
(Step Into) on the
toolbar to execute one source code statement at a time and follow execution in a routine
call.
After the debugger executes the source code statement, the current statement arrow moves to the next statement. The debugger uses these rules to find the next statement:
Choose or click
(Step Over) on the
toolbar to execute the current statement and advance to the next statement in the source
code. The current statement or routine executes; then program execution stops.
If the current statement is a routine call, program execution continues until it reaches:
Choose or click
(Step Return)
advance to the next statement to execute the rest of the current routine and stop program
execution after the routine returns to its caller. This command causes execution to return
up the call chain.
The current routine executes and returns to its caller; then program execution stops.