Pop up Form Placement

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

Guest

I have a linked form that pops up when another form is opened. I would like
this form to open and place at the bottom left of my screen. Can anyone help?
 
I have a linked form that pops up when another form is opened. I would like
this form to open and place at the bottom left of my screen. Can anyone help?

Look up the MoveSize method in VBA help.
DoCmd.MoveSize 5*1440,7*1440

Place the above in the form's Load event to position the form 5 inches
from the left edge and 7 inches down from the top of the screen.
Note: all measurements are in Twips, 1440 per inch,
 
Sharon,

I've noticed that popups seem to always open in the same location and size
that you last view them in design view. Open the form in design view and
drag it to where you want it to appear then save.

HTH,
Josh
 
Back
Top