Running a MakeTable Query

P

Piet Linden

What is the code for running a MakeTable query?

DoCmd.OpenQuery "query name"

or

DBEngine(0)(0).Execute "query name"

the difference is that the first one will give you prompts while the
second one will not.
 
Top