J John liem Registered User. Local time Today, 08:29 Joined Jul 15, 2002 Messages 112 Mar 19, 2003 #1 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" .................
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" .................
K KevinM Registered User. Local time Today, 07:29 Joined Jun 15, 2000 Messages 719 Mar 19, 2003 #2 Run the query from vb ... With Docmd .SetWarnings False .OpenQuery "MyMakeTableQueryName" .SetWarnings True End With
Run the query from vb ... With Docmd .SetWarnings False .OpenQuery "MyMakeTableQueryName" .SetWarnings True End With
J John liem Registered User. Local time Today, 08:29 Joined Jul 15, 2002 Messages 112 Mar 19, 2003 #3 Thanks again Kevin, that would work!.