cannot save form

  • Thread starter Thread starter Alice
  • Start date Start date
A

Alice

I am using Access 2003. For whatever reason, I cannot save forms created by
the Wizard. After I select that option and modify the form in design view,
not only is it not automatically saved in forms, when I manually save it, it
still does not save as a form. Please help!
 
This is one possibility -

If you have ever used the code DoCmd.SetWarnings False, this can cause this
type of behavior if somewhere you didn't get the warnings turned back to
true.

Try this - Go into the MODULES and copy this into the module:

Public Function ResetWarnings()
DoCmd.SetWarnings True
End Function

Then put your cursor in that function and click the Run button on the debug
toolbar.

then see if that fixed your problem. If it doesn't, then I'm not sure but
I've had this happen to me before so I thought I would suggest it.
--
Bob Larson
Access World Forums Super Moderator
Utter Access VIP
Tutorials at http://www.btabdevelopment.com
__________________________________
If my post was helpful to you, please rate the post.
 
Back
Top