D digs Registered User. Local time Today, 02:37 Joined Aug 16, 2004 Messages 20 Feb 11, 2005 #1 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.
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.
J Jon K Registered User. Local time Today, 02:37 Joined May 22, 2002 Messages 2,209 Feb 11, 2005 #2 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 .
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 .