vba breakpoints not working

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

Guest

I am in the process of testing some vba code for a form. I
set breakpoints in a few spots in the code in order to
step through the code, but when I run the form, it doesn't
stop at the breakpoints. I added a few message boxes to
confirm that the code is being processed when the form is
run.

Does anyone know why it won't stop at the breakpoints?
 
Is it just this file or all of them? Have you tried setting the break point
on the msgbox call, since you know that call is running?
 
I am in the process of testing some vba code for a form. I
set breakpoints in a few spots in the code in order to
step through the code, but when I run the form, it doesn't
stop at the breakpoints. I added a few message boxes to
confirm that the code is being processed when the form is
run.

Does anyone know why it won't stop at the breakpoints?

Typically because you have that feature turned off, (Tools,
Startup, Advanced, Special Keys), but sometimes because the
compiled code is different from the source (/decompile command
line option), and sometimes just because it's flaky.

(david)
 
Thanks, David.

The Special Keys feature was turned off. It seems to be
working fine now.

Thanks again.
 
Back
Top