NO SAVE OPTIONS

  • Thread starter Thread starter Glint
  • Start date Start date
G

Glint

Hi,
I don't know what I did but suddenly I find that I have no options on saving
changes to my forms anymore. How can I revert to the old ways when I was
prompted before I saved changes?
 
Sounds like your Warnings may have been set to No / False without getting
reset.

I would just go into the VBA Editor and in the Immediate Window type:

? SetWarnings True

and hit enter. See if that helps. If so, I would try tracking down
anyplace that you may have used a macro or code to DoCmd.SetWarnings False
and either forgot to turn them back on or errored out before it could get to
the reset. That is why I always use an error handler when using that code
and the first line of my code is DoCmd.SetWarnings True

--
Bob Larson
Access MVP
Access World Forums Administrator
Utter Access VIP

Tutorials at http://www.btabdevelopment.com

__________________________________
 
Thanks, Bob.
I found where the Warnings were turned off in the body of an IF statement
while they were turned on in the ELSE portion. Very grateful for our help.
 
Back
Top