If you only know the general area of the code causing an error, you can use a breakpoint to isolate the problem area, and then use toolbar icons or function keys to step into
(F8) and step over
(Shift + F8) to view each statement.
| Executes the current statement and breaks at the next line |
| Execute the procedure called by the current line and break at the line following the current line |
| Go back to the calling procedure. If you are using Step Into and have been moved to a called procedure, you can automatically run the current procedure, and return to the calling procedure. |