Forms keep changing to full screen size

  • Thread starter Thread starter charles.kendricks
  • Start date Start date
C

charles.kendricks

I have a couple of forms with button controls that bring up other forms
and reports. The problem is that when I exit the form that was call up
by the button on the original form, the original form has changed size
to full screen. How do I keep the form at the same size after the
child form or report has been exited from.
 
In the On Close event for either the form or report put the following:

With DoCmd
.Hourglass True
.Echo False
.Restore
.Hourglass False
.Echo True
End With

The Echo False will suppress any choppy screen updating and the form will
be restored before you turn the echo back on and the screen is refreshed.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top