Access 2000 doesn't ask to save design changes anymore. Why?

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

Guest

I have searched to no avail and I have no clue why MS Access 2000 has stopped
prompting me to save any design changes made to forms, reports, tables ect;
Please any help is greatly appreciated.
 
Your Warnings are turned off.

Somewhere in your database there is the line "docmd.setwarnings false"
that is not later followed by "docmd.setwarnings true". Easiest way
to fix this is to create a new module and put these functions in it:

Public Sub turnoff()
DoCmd.SetWarnings False
End Sub

Public Sub turnon()
DoCmd.SetWarnings True
End Sub

You can execute turnon() to turn warnings on an watch your problem
disappear. You can also reacreate your problem by using turnoff()

I suggest you inspect your code to find out where you should be
turning warnings back on.

Cheers,
Jason Lepack
 
I haven't changed any code for quite some time. If I reinstall Access it goes
away for a while, Sometimes for months and then it's back. It effects all
access Db's even new ones.
 
Did you even try what I mentioned?

I haven't changed any code for quite some time. If I reinstall Access it goes
away for a while, Sometimes for months and then it's back. It effects all
access Db's even new ones.
 
Yes,
I searched every module, form,query and everything for "SetWarnings" so I
could locate it and it isn't anywhere in the db.
I'm stumped. Thank you for your pateince.
 
Back
Top