open form maximized

  • Thread starter Thread starter Joel
  • Start date Start date
J

Joel

I built a form but I want it to open maximized, how can I
do that?

Thanks in Advance.

J
 
Load up form properties
Under the onactivate event run the following code

DoCmd.Maximize
 
-----Original Message-----
I built a form but I want it to open maximized, how can I
do that?

Thanks in Advance.

J
.
J
Open your form in design mode go into properties, in
the on open event build event with DoCmd.Maximize then
End Sub.
 
Joel said:
I built a form but I want it to open maximized, how can I
do that?

Thanks in Advance.

J


In the vba coding behind the Form's Open, Load or Activate event, put:

DoCmd.Maximize

Choose whichever of these events is most suitable for you.

hth

Hugh
 
Back
Top