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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top