I have created a button which prints a report like this:
Dim stDocName As String
stDocName = "Incident report"
DoCmd.OpenReport stDocName, acNormal
I would however like to see the printer select screen (CTRL + P screen so to say) instead of a printout to the default printer. How can i do this ?
Dim stDocName As String
stDocName = "Incident report"
DoCmd.OpenReport stDocName, acNormal
I would however like to see the printer select screen (CTRL + P screen so to say) instead of a printout to the default printer. How can i do this ?