How do I disable append/delete/maketable prompts?

DeMarcus

Registered User.
Local time
Today, 12:44
Joined
Jul 14, 2006
Messages
37
I am basically making a form to streamline the processes and functionality of my database project, so basically it's just a form that runs queries.

However, whenever it runs an action query, it always brings up a yes or no prompt for whatever action it is doing. Is there any way to disable these prompts (i.e. default yes to everything) or is this just an annoyance I will have to deal with?

Thanks.
 
Code:
SetWarnings = False

and remember to reset them after the queries run

Code:
SetWarnings = True
 
boblarson said:
Code:
SetWarnings = False

The Internet (and Google) is truly a valuable resource, as I would never have found this forum without them.

Thanks so much!
 

Users who are viewing this thread

Back
Top Bottom