Change opening postion /Form

B

Bob V

From my Main Form I have a control that open a smaller form overtop of main
Form, It always opens in the middle of my Main Form, can I reposition it to
open higher on my Main Form,
Thanks for any Help.....Bob
 
F

fredg

From my Main Form I have a control that open a smaller form overtop of main
Form, It always opens in the middle of my Main Form, can I reposition it to
open higher on my Main Form,
Thanks for any Help.....Bob

Look up the MoveSize method in VBA help.

DoCmd.MoveSize 2 *1440, 3 * 1440
will position a form 2 inches from the left edge of the screen and 3
inches down from the top.
 
Top