Form resizing

  • Thread starter Thread starter Annie
  • Start date Start date
A

Annie

In an access database, when I have multiple forms open,
then when I close one of them, the forms running in the
background are resized to resemble a popup.

Is there a property in the form itself that can be set
that will prevent this, or do I have to write some code
or create a macro.

Annie
 
One workaround:

Enter
DoCmd.Maximized
in the Activate event of the background forms.

This will force the form, when activated, to go maximized.
If you want them to maximize, that is

Krgrds,
Perry
 
Back
Top