R
robnsd
I have a print button (Command12) on a form (frmStaffNames) that
activates the following event
Private Sub Command12_Click()
DoCmd.OpenReport "SummaryTest", acPrintAll
DoCmd.Close acForm, "frmStaffNames"
End Sub
For some reason when any user clicks the button the report
(SummaryTest) prints at the same printer regardless of user. I want
the report to print to the users default printer, which is different
for each user.
Do I need to add more code?
activates the following event
Private Sub Command12_Click()
DoCmd.OpenReport "SummaryTest", acPrintAll
DoCmd.Close acForm, "frmStaffNames"
End Sub
For some reason when any user clicks the button the report
(SummaryTest) prints at the same printer regardless of user. I want
the report to print to the users default printer, which is different
for each user.
Do I need to add more code?