Position of form on screen

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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.
 
Back
Top