Size and View of REPORTS upon opening

  • Thread starter Thread starter kealaz
  • Start date Start date
K

kealaz

Is there any way to control the size and view of the window that opens a
report. Can I change the size with a view of 100% instead of the current
settings? Right now (on my computer) the window is opening using about a
third of my monitor size and fitting the entire page, which makes the text
VERY hard to read. I would like the report to open so that the information
is useful to me without having to do a lot of resizing of the window every
time. Is this possible? OR, will this be different for each and every user?

Thank you for your time answering my questions.
 
Use the report's Activate event to maximize the report:

Private Sub Report_Activate()
DoCmd.Maximize
End Sub
 
Back
Top