Button on Report (1 Viewer)

LNewton

Registered User.
Local time
Today, 09:19
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?
 

Fornatian

Dim Person
Local time
Today, 09:19
Joined
Sep 1, 2000
Messages
1,396
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

Top Bottom