View Full Version : Make-Table query


John liem
03-19-2003, 05:55 AM
How can I run the Make_Table Query without having the following warning message pop up on the screen?.
"You are about to run a make-table query that will modify data in your table" .................

KevinM
03-19-2003, 06:16 AM
Run the query from vb ...

With Docmd
.SetWarnings False
.OpenQuery "MyMakeTableQueryName"
.SetWarnings True
End With

John liem
03-19-2003, 06:23 AM
Thanks again Kevin, that would work!.