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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

update query

Status
Not open for further replies.

jeff1

IS-IT--Management
Nov 8, 2000
49
US
Can I run an update query upon update on a form that runs in the background. I have the query running but importantly I do not want the query to ask if it is OK to Modify data. The user does not need to know that the query is running.

Thank you in advance for your help.
 
This code will keep the warning boxes from flashing up.

DoCmd.SetWarnings False
:
: your code that you don't want warnings for :
:
DoCmd.SetWarnings True
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top