Display on One Screen

  • Thread starter Thread starter Pepper
  • Start date Start date
P

Pepper

I have multi-page reports where each page requires scrolling to view from top
to bottom.
Is there a way to reduce the "Zoom" to view the entire page on one screen.
Either a command I missed or some simple code will be benificial.

Thank you
Pepper
 
Pepper said:
I have multi-page reports where each page requires scrolling to view from top
to bottom.
Is there a way to reduce the "Zoom" to view the entire page on one screen.
Either a command I missed or some simple code will be benificial.


The standard view feature will do that with a mouse click
anywhere on the page.

If you want to open the report to that zoom, then use this
kind of code to open the form:

DoCmd.OpenReport . . .
RunCommand acCmdFitToWindow
 
Back
Top