I want to have a button on my form that prints off a report. I've figured out to use this line of code to just print it to the default printer:
stDocName = "RepairOut"
DoCmd.OpenReport stDocName, acViewNormal
But I want the printer dialog to come up so I can let the user select the printer. Any ideas?
Thanks.
stDocName = "RepairOut"
DoCmd.OpenReport stDocName, acViewNormal
But I want the printer dialog to come up so I can let the user select the printer. Any ideas?
Thanks.