open form maximized

J

Joel

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

Thanks in Advance.

J
 
P

Phill

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

DoCmd.Maximize
 
J

jeff

-----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.
 
H

Hugh O'Neill

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
 

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

Top