Tracking software execution line by line

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am new to Access. I am rewriting someone elses program. I have
muttledthrough mmost of what I need to change except during print forms some
prompt keep popping up that I cannot find any procedures for in the view
code. Is there some way I can turn on a debugger mode so that I can track
line by line execution to figure out where these prompts are being called
from?

Thanks.
 
Open the code section, in the line where you want to put the code break,
press F9 that will put a code break, you can see it by the red line that
apear now.

Run your application, when the code will stop, you can step line by pressing
F8.
To run the code without break, press F5.

You can add as much code break that you want, but remember that when you
close the application all the code break will ber removed.
 
Back
Top