Screen display size

G

Glynn

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?
 
O

Ofer

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
 
Top