cannot save form

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!
 
B

boblarson

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top