Print Zoom

  • Thread starter Thread starter Tomk
  • Start date Start date
T

Tomk

I've got some Access 2k reports that when printed come out like a postage
stamp in the upper left corner (about 1" x 1"). It is just reduced to a
very tiny size. Sometimes the preview looks funny too ( or so the users
say) but not always. I have never been able to duplicate their problem but
I've seen the printed result. They can't correlate it to anything else, it
has happened to other users and does it maybe 1 out of 10 times.

Is there a VBA command for force a specific zoom size? I'm not sure this
will fix it but it's worth a try.
 
If you open the report from a command button on a form, use:

DoCmd.OpenReport "ReportName",acViewPreview
DoCmd.RunCommand acCmdFitToWindow

Jim
 
That did not help. It does change the preview which was defaulting to 100%
but the printer still prints it very small. This is a HP laserjet 4050PN.
I'm thinking it may be a driver problem? I'm working on getting a different
printer to test.
 
Back
Top