Run two Query at the same time when press single button

B

billy_pit

Hi,
My project is in MS Access 2002.
I want to know how can I Run Two Different Queries when I press submit
button?
 
F

fredg

Hi,
My project is in MS Access 2002.
I want to know how can I Run Two Different Queries when I press submit
button?

Code the button's click event:
DoCmd.OpenQuery "Query1"
DoCmd.OpenQuery "Query2"
 

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