Position of form on screen

K

Kirk P.

My form is set to position itself in the center upon loading. I want it to
position in the lower right corner upon loading - what is the secret to
manipulating this setting?
 
F

fredg

My form is set to position itself in the center upon loading. I want it to
position in the lower right corner upon loading - what is the secret to
manipulating this setting?

You can position the opening form in the form's Load event.

Note: All measurements are in Twips, 1440 per inch.
DoCmd.MoveSize 8 * 1440, 6 * 1440

Look up the MoveSize method in VBA Help.
 
Top