I have a report with a custom menu. The menu has has the Print button
(the one with the printer icon and 3 dots ). When I click this button on
my custom menu it goes directly to print and does not give the dialog box
option to select the number of pages or to print a specific page.
If I use the standard menu I get this dialog box option. How can I get
this option in my custom menu ?
Howard,
<< I have a report with a custom menu. The menu has has the Print button
(the one with the printer icon and 3 dots ). When I click this button on
my custom menu it goes directly to print and does not give the dialog box
option to select the number of pages or to print a specific page.
If I use the standard menu I get this dialog box option. How can I get
this option in my custom menu ? >>
If none of the buttons available to you do that, how about adding your own
custom button and use the
DoCmd.RunCommand acCmdPrint
method in the "On Click" procedure to print? Will this give you a dialog
box?
Greg