Screen display size

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In a data entry Form I use a command button to preview a report.

When I close the report after preview and return to the data entry Form -
the Form screen is reduced to about 75% of normal size.

How can I prevent this resizing of the Form screen?
 
If you open the form in maximise view, then on the On form Activate event of
the form you can write the code

docmd.Maximize
 
Back
Top