form sizing

G

george

Hi,

I have a number of forms, and I would like for all of them
to have exactly the same size and open at the center of
the window. Which properties do I need to set to achieve
this?

thanks a lot in advance, george
 
M

Marshall Barton

george said:
I have a number of forms, and I would like for all of them
to have exactly the same size and open at the center of
the window. Which properties do I need to set to achieve
this?


The position of a form is not a property of the form.

However, you can use DoCmd.MoveSize to do it.

Note that the form properties InsideHeight and InsideWidth
can be used to set the form's size.
 
Top