Report Size In Preview

D

dbl

Hi how do I set my preview size to 80% in Access 2003 when previewing
reports without having to zoom in every time.
Can this be done in the code that brings up the report?

Thanks Bob
 
M

Marshall Barton

dbl said:
Hi how do I set my preview size to 80% in Access 2003 when previewing
reports without having to zoom in every time.
Can this be done in the code that brings up the report?


You can use:
DoCmd.RunCommand acCmdZoom75
or maybe you prefer:
DoCmd.RunCommand acCmdSizeToFit
 
Top