A family of Microsoft relational database management systems designed for ease of use.
You can run some code to SetWarnings = False before and then set back to True after.
DoCmd.SetWarnings = False
I expect you can also do this with a macro.
Duane
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
When you run an UPDATE query or UPDATE sql, is there any way to disable the default box in MS Access that says "You are about to update 1 row(s)."?
A family of Microsoft relational database management systems designed for ease of use.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
You can run some code to SetWarnings = False before and then set back to True after.
DoCmd.SetWarnings = False
I expect you can also do this with a macro.
Duane
Thanks so much Duane! I didn't need the =, just DoCmd.SetWarnings False. Other than that, it worked like a charm. Thanks, again!