I have been given the job of maintaining and fixing a database that was created by someone else and there is a Reports page that is actually a Form and the other users will be printing this in database view not from design view. There is a "Print" button set up that is working perfectly fine except when it prints it will only print the 1st page of the form and I can't figure out why.
Here is the code I have on the button:
Private Sub cmdPrint_Click()
Forms("frmReports").Printer.Orientation = acPRORLandscape
DoCmd.PrintOut , 1, 1, acLow, 1, False
End Sub
Is there a way to have the printer dialog menu pop up when printing from database view so the user could specify the number of pages and all of that?
Here is the code I have on the button:
Private Sub cmdPrint_Click()
Forms("frmReports").Printer.Orientation = acPRORLandscape
DoCmd.PrintOut , 1, 1, acLow, 1, False
End Sub
Is there a way to have the printer dialog menu pop up when printing from database view so the user could specify the number of pages and all of that?