Multiple Querys

Hunter J.

Registered User.
Local time
Yesterday, 18:44
Joined
Feb 1, 2004
Messages
24
Is it possible to run multiple querys from one command button and if so how?
Thanks for any help.

Hunter J.
 
In the command button click event, put . . . .
Code:
Dim stDocName,stDocName2, etc . . ..  As String
stDocName1 = "query1"
DoCmd.OpenQuery stDocName1, acNormal, acEdit
stDocName2 = "query2"
DoCmd.OpenQuery stDocName2, acNormal, acEdit

etc, etc. . . ..
 
Thank you. I will give that a try.

Hunter J.
 

Users who are viewing this thread

Back
Top Bottom