popup form locations

  • Thread starter Thread starter Fred
  • Start date Start date
Look up the MoveSize method in VBA help.
The measurements must be in Twips, 1440 per inch.
DoCmd.MoveSize 1.5*1440, 3*1440
will position the form 1.5 inches in from the left edge of the screen, and
3 inches from the top.

Place the above code in the forms Open event.
 
Back
Top