Launching Into Break Mode.....?

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

Guest

What would cause a module to launch into break mode on its own? I have code
on a button, when the button is clicked the code opens in break mode (there
is no break point).

If I click continue, let the code run, then close out, I can click the
button and it behaves - it only does this the first time you click it after
opening the database.

Thanks very much for any insight you can provide....
 
Anne, this sounds like a corruption.

Decompile a copy of the database by entering something like this at the
command prompt while Access is not running. It is all one line, and include
the quotes:
"c:\Program Files\Microsoft office\office\msaccess.exe" /decompile
"c:\MyPath\MyDatabase.mdb"
 
You have what is commonly referred ot as a phantom breakpoint. Usually,
this will be the last breakpoint you set. To clear it, use the /decompile
command line switch, i.e.,

"path to msaccess.exe" "path to your mdb" /decompile
 
Back
Top