i have the following code for my print button:
Private Sub Workscope_Review_Report_test___PRINT_Click()
On Error GoTo Err_Workscope_Review_Report_test___PRINT_Click
Dim stDocName As String
stDocName = "Rpt: Cycle 0 Form"
DoCmd.OpenReport stDocName, acNormal
Exit_Workscope_Review_Report_test___PRIN:
Exit Sub
Err_Workscope_Review_Report_test___PRINT_Click:
MsgBox Err.Description
Resume Exit_Workscope_Review_Report_test___PRIN
End Sub
this is good but does not give me an option to select which printer i would like to send to. how to i make the print dialog box appear when this button is pressed?