Specify position of forms in window?

C

CW

How can I specify the position in which a form will always appear in the
window, when opened?
I have several small forms which need to be open and visible all at the same
time and I would like to specify the position of each one in the window, so
that they are in a logical position relative to each other.
Hope somebody knows how!
Many thanks
CW
 
O

Ofer Cohen

In the form load event you can use the movesize to place the location of the
form.

Docmd.MoveSize 4000,4000

play the numbers until you find the desired location
 
C

CW

Perfect - just what I needed!
Thanks a lot
CW

Ofer Cohen said:
In the form load event you can use the movesize to place the location of the
form.

Docmd.MoveSize 4000,4000

play the numbers until you find the desired location
 
Top