View Full Version : Popup messages of a query (how to disappear them?)


dealwi8me
04-12-2005, 12:40 AM
Is it possible to make the popup messages of a query (update and append queries) disappear?

Because i have 4 diffrent queries that i call through an event of a form and i don' t want the users getting 7-8 popups in every records without knowing why!

Thank you in advance :)

maxmangion
04-12-2005, 12:51 AM
DoCmd.SetWarnings False

don't forget to turn them on again

DoCmd.SetWarnings True

maxmangion
04-12-2005, 12:55 AM
Alternatively, from the Tools Menu, go to Options -> Edit/Find and under confirm, untick the Action Queries ... however, use this with caution.

dealwi8me
04-12-2005, 01:55 AM
thanks a lot!:)

maxmangion
04-12-2005, 01:58 AM
you're welcome :)