shabbaranks
Registered User.
- Local time
- Today, 12:12
- Joined
- Oct 17, 2011
- Messages
- 300
Hi - yep me again!!
Im trying to do 2 things - learn some VBA and get my query to output to the report and close the query in the background. I can get the first bit going but it continues to leave the query open my code is:
Thanks
Im trying to do 2 things - learn some VBA and get my query to output to the report and close the query in the background. I can get the first bit going but it continues to leave the query open my code is:
Code:
Private Sub ReprintTimeSheet_Click()
DoCmd.OpenQuery "RePrintTimesheetQuery"
DoCmd.OpenReport "RePrintTimesheetReport"
End Sub
Thanks