Run two Query at the same time when press single button

  • Thread starter Thread starter billy_pit
  • Start date Start date
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?
 
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"
 
Back
Top