Run series of query -- I don't want any pop-up

A

ali

I have generated 4 queries (1. empty all, 2. import data, 3. generate
information, 4. Make a new table)

I've created a button to run these 4 quries sequencially.
------------------------------------------------------------------------------------
Problem:

MS ACCESS pops up "confirmation dialog" to ask me whether to delete/modify
the table.

------------------------------------------------------------------------------------
Question:


I don't want any question to be asked. I just want those queries to be
executed once i press my button.
 
D

Duane Hookom

You can run some code like:

DoCmd.SetWarnings False
' your action queries
DoCmd.SetWarnings True
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top