Zoom Percentage

K

Ken

HI,

I am using Access 2002 with XP Pro

Is it possible to set the zoom percentage to 90%?

I have report in landscape and use MoveSize to set the
form on the screen but part of the report cannot be seen
unless the user scrolls left or right. If you adjust the
zoom to 90% after opening the report, the entire report
can be viewed.

Thank You Very Much

Ken
 
M

Marshall Barton

Ken said:
I am using Access 2002 with XP Pro

Is it possible to set the zoom percentage to 90%?

I have report in landscape and use MoveSize to set the
form on the screen but part of the report cannot be seen
unless the user scrolls left or right. If you adjust the
zoom to 90% after opening the report, the entire report
can be viewed.


Not that I ever heard of.

You can use sequence in the procedure that opens the report:

DoCmd.OpenReport . . .
DoCmd.RunCommand acCmdFitToWindow

Which is probably better for your needs than the limited
fixed zoom factors:
acCmdZoom10
acCmdZoom100
acCmdZoom1000
acCmdZoom150
acCmdZoom200
acCmdZoom25
acCmdZoom50
acCmdZoom500
acCmdZoom75
 
K

Ken

-----Original Message-----
Ken said:
I am using Access 2002 with XP Pro

Is it possible to set the zoom percentage to 90%?

I have report in landscape and use MoveSize to set the
form on the screen but part of the report cannot be seen
unless the user scrolls left or right. If you adjust the
zoom to 90% after opening the report, the entire report
can be viewed.


Not that I ever heard of.

You can use sequence in the procedure that opens the report:

DoCmd.OpenReport . . .
DoCmd.RunCommand acCmdFitToWindow

Which is probably better for your needs than the limited
fixed zoom factors:
acCmdZoom10
acCmdZoom100
acCmdZoom1000
acCmdZoom150
acCmdZoom200
acCmdZoom25
acCmdZoom50
acCmdZoom500
acCmdZoom75

--
Marsh
MVP [MS Access]
.
I saw that in another question on the board and tried
using it. I get an error "FitToWindow" isn't available
now. Any idea why?

Thanks

Ken
 
R

Rick Brandt

Ken said:
using it. I get an error "FitToWindow" isn't available
now. Any idea why?

Where did you use it? It cannot be run from code in the Report itself.
You have to do it just as shown above.
 

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