Forms keep their size when reports are maximized?

  • Thread starter Thread starter Erin
  • Start date Start date
E

Erin

I have a database with lots of forms and reports. Most of my forms are small
and do not take up the whole screen. When a user runs a report and maximizes
it in order to read it, all the forms are now maximized, too. Is there any
way to set it so that the forms stay their smaller size when a report is
maximized? Or, is there a way to maximize the reports on open but keep the
forms their smaller size??

Thanks!!!!!!
 
In the On Close event on the reports
=DoCmd.Restore
And if they always maximize them:
In the On Open event:
=DoCmd.Maximize
 
Back
Top