I have the following behind a button that brings the report up on the screen.
Dim strWhere As String
strWhere = "[ID]=" & Me.ID
DoCmd.OpenReport "Keyholder to Cust", acViewPreview, , strWhere
End Sub
iam i right in thinking if i change the DoCmd to
DoCmd.Openreport "Report 1", Report 2", acprint,,strWhere
That this would run two reports and send them straight to the printer?
Thanks in advance
Dim strWhere As String
strWhere = "[ID]=" & Me.ID
DoCmd.OpenReport "Keyholder to Cust", acViewPreview, , strWhere
End Sub
iam i right in thinking if i change the DoCmd to
DoCmd.Openreport "Report 1", Report 2", acprint,,strWhere
That this would run two reports and send them straight to the printer?
Thanks in advance