Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Suppress action queries

Status
Not open for further replies.

asmall

Programmer
Dec 26, 2002
31
US
Does anyone know if there is a way to suppress action queries through code instead of through the menu bar? I'm installing a database on several computers and don't want to have to spend too much time suppressing action queries.
 
Yes,

Before the query:

DoCmd.SetWarnings False

and after the query:

DoCmd.SetWarnings True

John
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top