Print preview format

A

ahearn

This is probably a simple solution but I could not figure it out. I have a
report that defaults to Fit mode when it shows up in preview mode on the
screen. How can I specify for the preview mode to be at 100% and the preview
window to be larger?
 
F

fredg

This is probably a simple solution but I could not figure it out. I have a
report that defaults to Fit mode when it shows up in preview mode on the
screen. How can I specify for the preview mode to be at 100% and the preview
window to be larger?

Open the report using code:
DoCmd.OpenReport "ReportName", acViewPreview
DoCmd.RunCommand acCMDZoom100
DoCmd.Maximize
 
Top