M
Mark Anders
Hi!
How to define number of copies on printig. My code is:
Private Sub PrintInv()
Dim strDocName As String
Dim strWhere As String
strDocName = "Invoice"
strWhere = "OrderNr=" & Me!OrderNr
DoCmd.OpenReport strDocName, acViewNormal, , strWhere, acHidden, 2
End Sub
This procedure prints only 1 copy instead of 2. How I should change code to
get 2 copies?
How to define number of copies on printig. My code is:
Private Sub PrintInv()
Dim strDocName As String
Dim strWhere As String
strDocName = "Invoice"
strWhere = "OrderNr=" & Me!OrderNr
DoCmd.OpenReport strDocName, acViewNormal, , strWhere, acHidden, 2
End Sub
This procedure prints only 1 copy instead of 2. How I should change code to
get 2 copies?