Problem going from form to reports

G

George

When I open a report from a form with a command button
and then close the report my underlying form that was
maximized goes to a non-maximized size without the min,
restore buttons. Does anyone know how to prevent this
from happening? I want the underlying form to stay
maximized when the user goes back to it.
 
D

Don Wilson

On Got Focus of the form you would like maximized all the
time add this line of code.

DoCmd.Maximize

I hope that helps
 
Top