Resizing forms

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

Guest

Hi.

I have several forms that I want to always display maximized. I have a
button on one form that opens another. Whenever the other form is opened,
then closed, the background form resizes itself to the windowed size, even
though the form it's opening gets maximized.

I put the docmd.maximize line in the OnOpen and OnActivate events of all the
forms. This works, except that you get that ugly flashing as the forms grow
and resize themselves unnecessarily. Turning the echo property on and off
doesn't resolve the problem. The users still see the forms growing and
shrinking. Why do they resize even if they were all maximized?

Any advice? Thx!
 
Hi.

I have several forms that I want to always display maximized. I have a
button on one form that opens another. Whenever the other form is opened,
then closed, the background form resizes itself to the windowed size, even
though the form it's opening gets maximized.

I put the docmd.maximize line in the OnOpen and OnActivate events of all the
forms. This works, except that you get that ugly flashing as the forms grow
and resize themselves unnecessarily. Turning the echo property on and off
doesn't resolve the problem. The users still see the forms growing and
shrinking. Why do they resize even if they were all maximized?

Any advice? Thx!

Check the events on the forms.
Do any of them have DoCmd.Restore?
That will do it.
 
Back
Top