Button on Report

LNewton

Registered User.
Local time
Today, 21:05
Joined
Jan 24, 2002
Messages
31
Is there a way to put a functioning button on a report. Have a rpt that is at times more than one page and I want to duplex print at that time. They also want to preview the report prior to printing and do not want to minimize the report to click the duplex button. Any ideas?
 
I achieved this by creating a custom menu bar with a function call which printed the report a number of times:

Code:
Public Function PrintTwice()
DoCmd.PrintOut acPrintAll, , , , 2
End Function

Set the OnAction event of the Command bar button (in the buttons Properties) to

=PrintTwice()
 

Users who are viewing this thread

Back
Top Bottom