No Warnings For Insert

jwlnewsome

Registered User.
Local time
Today, 08:24
Joined
Jan 10, 2006
Messages
20
when i use an INSERT Sql function to update my database i get a popup warning telling me " You are about to append 1 row(s)".

Is there a way of bypassing this warning so the database is just updated no fuss ?
thanks in advance
john
 
Tools --> Options --> Edit/Find

In the "Confirm" section, Untick "Action Queries". That should do the trick.
 
cheers mate nice one
john
 
Depending on the security and usage of the db you might considering turning the warnings off only when needed.

Code:
DoCmd.SetWarnings False
'your action queries run here
DoCmd.SetWarnings True
 

Users who are viewing this thread

Back
Top Bottom