Access 2K does not break at breakpoint

G

Guest

An Access 2K database runs fine but if I put a breakpoint in the code for checking it does not break at the breakpoint when the code is run. The database compiles ok & I have re-generated it in another database. The system is a Front End/Back End configuration with the front end about 5MB and the Back End about 300MB. The database is secured
Any ideas why it would not break at a breakpoint?
 
A

Arvin Meyer

Terry said:
An Access 2K database runs fine but if I put a breakpoint in the code for
checking it does not break at the breakpoint when the code is run. The
database compiles ok & I have re-generated it in another database. The
system is a Front End/Back End configuration with the front end about 5MB
and the Back End about 300MB. The database is secured.
Any ideas why it would not break at a breakpoint?

Typically, code does not stop at a breakpoint because it branches off before
it gets there. Add error handling and debug.print statements liberally
throughout your code and you'll usually find your problem.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 
G

Guest

There is no branching, I can put a msgbox immediately before & after the break line and they BOTH execute but the break does not occur.
 

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

Top