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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top