Automatically maximizing forms

S

slhenson

Is there a way to set a form so that it automatically maximizes when it opens
so that the user does not have to do it?
 
D

Douglas J. Steele

Create a procedure for the form's Open event, and put DoCmd.Maximize in the
procedure.
 
Top