preview size small in xp

  • Thread starter Thread starter sd
  • Start date Start date
S

sd

We just converted to xp and the preveiw for reports displays very small, is
there a way to automatically increase the size.
 
1.) Reports in Xp open by default in full page view. You can of course
change this using a simple call after the report is opened to set the zoom
to something else as in:

Docmd.OpenReport "MyReport" acViewPreview
Docmd.SelectObject acReport, "MyReport"
Docmd.RunCommand acCmdZoom100

The challenge is that this will not resize the report's window within
Access, to see how to do that, stop by our web and look in the Free files
area for the download "Other reports" it demonstrates how to use the
Windows api to resize report windows in Access Xp.
 
Back
Top