PopUp Form opening location

D

Dave

Where do I control or set the location a popup form opens to?

Any help here will be appreciated.

Thanks in advance
 
F

fredg

Where do I control or set the location a popup form opens to?

Any help here will be appreciated.

Thanks in advance

You could code the form's Open event:

Docmd.MoveSize 2* 1440, 4 * 1440

which will open the form 2 inches from the left screen edge and 4
inches down from the top.
All measurement's are in Twips, 1440 per inch.
 
D

Dave

Thank you,
that will do nicely

Dave

fredg said:
You could code the form's Open event:

Docmd.MoveSize 2* 1440, 4 * 1440

which will open the form 2 inches from the left screen edge and 4
inches down from the top.
All measurement's are in Twips, 1440 per inch.
 
Top