break without breakpoint, Why?

K

Ken Snell

Could be a "phantom" one.

While in VBE, try clicking the "Clear all breakpoints" item in Debug menu.

If that doesn't work, delete (by Ctrl-X) the line on which the break is
occurring. Complie the code. Then insert the line that you deleted and
compile the code again.
 
D

david epsom dot com dot au

Use the /decompile command line option of msaccess.exe
to clear out the break point and compiled code that has
become detached from your source code.

(david)
 
Top