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 or statement.
If the source line is a function call, executes the entire function
without stepping through the individual function instructions.
- Step Into (F7). Executes one source line or statement.
If the source line is a function call, stops before the first
statement of the function.
- Step Out (Ctrl-F7). Executes one source line or statement.
Finishes execution of the current function and stops on the source
line immediately following the call to that function.
Legal Notices