Zoom report preview using VBA?

J

John Wirth

Try as I may, I have yet to discover how to make a preview
view of a report open at 75% size rather than 100%. One
needs some little piece of code in the Report Open event
procedure. I have clicked the zoom buttom a trillion times
and am tired thereof. Help out there?
 
M

Marshall Barton

John said:
Try as I may, I have yet to discover how to make a preview
view of a report open at 75% size rather than 100%. One
needs some little piece of code in the Report Open event
procedure. I have clicked the zoom buttom a trillion times
and am tired thereof. Help out there?

Do it right after the code that opens the report:

DoCmd.OpenReport . . .
DoCmd.RunCommand acCmdZoom75
 

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