I have seen this same question asked many times. How can I get rid of that annoying Popup box that tells me I am inserting records into the table.
There are two ways to do this.
The first is thru VBA. To turn off the message box put the following code before you run the SQL statement.
[color blue]
DoCmd.SetWarnings False[/color]
After the SQL statement put this code:[color blue]
DoCmd.SetWarnings True[/color]
That will eliminate the annoying popup box everytime.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.