I have set up a command button on a form to open a print dialog screen with (4) choices of reports to print and the type of output (print or print preview). I want the user to be able to print more than one copy of the report if necessary. How can I accomplish this?<br><br>Heres the code to choose the reports and type of output:<br><br>Private Sub CmdPrint_Click()<br>Dim ReportDest As String<br><br>Me.Visible = False<br><br>If Me!TypeOfOutput = 1 Then<br>ReportDest = acNormal<br>Else<br>ReportDest = acPreview<br>End If<br><br>If Me!chkLabel = -1 Then<br>DoCmd.OpenReport "rptFolderLabel", ReportDest<br>End If<br>If Me!chkOffOrder = -1 Then<br>DoCmd.OpenReport "rptOfficeOrder", ReportDest<br>End If<br>If Me!chkShopOrder = -1 Then<br>DoCmd.OpenReport "rptJobCostReport", ReportDest<br>End If<br>If Me!chkTimeSheet = -1 Then<br>DoCmd.OpenReport "rptProjectTimeSheet", ReportDest<br>End Sub