Suppress Save Record messages...

Oyster

Registered User.
Local time
Today, 14:32
Joined
Nov 16, 2004
Messages
34
How I can I suppress the apprearance save record messages?

Thanks
 
Just a thought, i havnt actually tried, but maybe turn of warnings when you open the form, and turn them back on when you close the form

Dont forget to turn them back on in the event of an error, and youll also have the problem of an ungraceful exit...
 
Check out the save commands to suit your purpose

docmd.RunCommand acCmdSave

docmd.save acForm, "formname"
docmd.save acTable, "tablename"
docmd.save ect..



Edit:
ohhh this is when you're closing a form?

DoCmd.Close acForm, "Form Name", acSaveNo

or replace acSaveNo with acSaveYes
 
Last edited:

Users who are viewing this thread

Back
Top Bottom