Print Preview Window

D

DONNA HAINES

I just upgraded to Access XP and when I preview a report in the print
preview window I would like the view default to be set to 100%. Is there
code to put in my on open property which will set the preview window to
100%? Thanks in advance.
 
F

Fredg

Donna,
Not in the Open event of the report, but if you open the report using a
command button on a form, you can code the button's Click event:

DoCmd.OpenReport "ReportName", acViewPreview
DoCmd.RunCommand acCmdZoom100
 
Top