Code won't break at breakpint

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

Guest

I'm sure I'm missing something basic, but I just opened a database I haven't worked on before and tried to put a breakpoint in the code on a form and the program won't break at the breakpoint. It appears to ignore any breakpoint I set. Is there some setting in Access or VB that must be turned on to have code break at a breakpoint?
 
When you set a breakpoint and the code won't break, the first thing I look
for is -- are you sure your code is actually getting to the code steps where
you placed the breakpoint? You should put breakpoints at various places and
see if the code is taking a different route than you think it should.

--
Ken Snell
<MS ACCESS MVP>

Kit said:
I'm sure I'm missing something basic, but I just opened a database I
haven't worked on before and tried to put a breakpoint in the code on a form
and the program won't break at the breakpoint. It appears to ignore any
breakpoint I set. Is there some setting in Access or VB that must be turned
on to have code break at a breakpoint?
 
I've put a breakpoint on every event procedure on the particular form I'm working on and none of them will break the code. When I open another database and put a breakpoint on the same event (click) of the same type of object (Command button), the code stops just fine. The database I'm working on is one I've converted from Access 2002 back to Access 2000, but I've done that before and things have worked fine.
 
Back
Top