Is there an option to select how many prints will be printed from theaccess options I would like be to print 2 or 3 etc copies, I can do this through the print dialouge but can I select this option anywhere in the access options?
Steve
Steve
Private Sub Command12_Click()
On Error GoTo Err_Command12_Click
Dim stDocName As String
DoCmd.OpenReport "Planning Report"
DoCmd.PrintOut acPrintAll, , , , 2
DoCmd.Close acReport, "Planning Report", acSaveNo
Exit_Command12_Click:
Exit Sub
Err_Command12_Click:
MsgBox Err.Description
Resume Exit_Command12_Click
End Sub