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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top