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

Prevent Confirmation of update 1

Status
Not open for further replies.

delpino

Programmer
Dec 29, 2000
17
0
0
GB
I'm running a Module which updates a table, but unfortunately it asks for confirmation of the update process. can i prevent that somehow, cause its a bit annoying to confirm hundreds of times..
 
SetWarnings to False at the start
Code:
DoCmd.SetWarnings False
and then remember to SetWarnings to true again at the end ( And also in any Error routine that you have to ensure Warnings are set regardless of how the module ends.
Code:
DoCmd.SetWarnings True


G LS
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top