VBA Breakpoints

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

Guest

I am debugging an Access XP database. I toggle some breakpoints so I can see what is going on with the code. The problem I have with Office XP is that the breakpoints do not stop the code from running. I have even put a breakpoint on the first command line of the code. XP just ignores it. Is there a setting that tells it to ignore the breakpoints? Am I missing something? I have tried it on a few machines with the same problem.

As it makes it tough to debug with out using breakpoints, any and all suggestions are welcome

Jim
 
I am debugging an Access XP database. I toggle some breakpoints so I can see
what is going on with the code. The problem I have with Office XP is that the
breakpoints do not stop the code from running. I have even put a breakpoint on
the first command line of the code. XP just ignores it. Is there a setting
that tells it to ignore the breakpoints? Am I missing something? I have tried
it on a few machines with the same problem.
As it makes it tough to debug with out using breakpoints, any and all
suggestions are welcome.

Make sure that, in your Startup options, "Use Special Access Keys" is checked
(in the dialog, click on the "Advanced >>" button).
 
Are you sure you're actually executing that code? Adding a MsgBox could
confirm whether or not it's being executed.

Rick
 
Back
Top