zoom report (1 Viewer)

nevsad

New member
Local time
Today, 18:34
Joined
Mar 3, 2020
Messages
5
hi...
I use the code to open the report.......
Code:
Private Sub Report_Activate()
    DoCmd.ShowToolbar "Print Preview", acToolbarYes
    DoCmd.Maximize
End Sub

This works great
The question is
Is it possible, upon opening the report, to use the zoom option 200%
Any ideas are welcome
thank you
 
Last edited by a moderator:

arnelgp

..forever waiting... waiting for jellybean!
Local time
Tomorrow, 00:34
Joined
May 7, 2009
Messages
19,248
if you are using a command button to open the report, you can run Zoom after you open the report.
for macro:
macro.png


for VBA code:

vba.png


note that on the last picture, FormNamesT is my sample Report name.
 

Users who are viewing this thread

Top Bottom