S
Sheldon
I am executing a query that creates a table from a TEMPLATE table.
SQL = "SELECT * INTO tbl" & Me.txtNewStockName & " "
SQL = SQL & "FROM tblTemplate"
When I run the following command to execute the query I get an alert message
DoCmd.RunSQL SQL
The message is
You are about to paste 0 row(s) into a new table.
etc, etc...
How do suppress this warning, and then turn warnings back on after the
statement has executed?
Thanks
SQL = "SELECT * INTO tbl" & Me.txtNewStockName & " "
SQL = SQL & "FROM tblTemplate"
When I run the following command to execute the query I get an alert message
DoCmd.RunSQL SQL
The message is
You are about to paste 0 row(s) into a new table.
etc, etc...
How do suppress this warning, and then turn warnings back on after the
statement has executed?
Thanks