Make Table Query

digs

Registered User.
Local time
Today, 02:37
Joined
Aug 16, 2004
Messages
20
I've got a button on a form that runs a make table query. Is there any way you can stop the prompts coming up to save the user from accepting the prompts.
 
Method 1: use an Execute method, e.g.

CurrentDb.Execute "qryMakeTable"


Method 2: set warnings to False then True, e.g.

DoCmd.SetWarnings False
DoCmd.OpenQuery "qryMakeTable"
DoCmd.SetWarnings True
.
 

Users who are viewing this thread

Back
Top Bottom