Stepping Through Your Program
See Also
Once execution of your program is halted, you can step through your lines of
code using the following commands on the Debug menu or toolbar:
-
Step Over (F8).
Executes one source line. If the source line contains a call,
executes the entire routine without stepping through the individual instructions.
-
Step Into (F7).
Executes one source line. If the source line contains a call,
stops just before executing the first
statement of the routine. You can also start a debugging session with
the Step Into command. Program execution
stops on the first
line after the main routine before any changes have been made to
the state of the program.
-
Step Out (Alt-Shift-F7).
Executes one source line. If the source line is part of a routine,
executes the remaining lines of the
routine and returns control to the caller of the routine.
Legal Notices