Report Size In Preview

  • Thread starter Thread starter dbl
  • Start date Start date
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
 
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
 
Back
Top