totn Access 2003 VBA Debugging

MS Access 2003: Step Over - VBA code

This MSAccess tutorial explains how to use Step Over in the VBA debugging environment in Access 2003 (with screenshots and step-by-step instructions).

Step Over

Microsoft Access

You can choose to "Step Over ". What this means is that you will step through each line of code in your current procedure, but step over (ie: run as a unit) any procedures that are called by the current procedure.

You can do this by either pressing the Shift+F8 key or selecting "Step Over" under the Debug menu.

Microsoft Access

Each time you select "Step Over", the debugger will move you to the next line of code in your current procedure. If your current procedure calls another procedure, the debugger will step over the called procedure. It won't drill down into the code of the called procedure.