Form Position

  • Thread starter Thread starter DS
  • Start date Start date
Go to google.com and click on "groups"
then put...

microsoft.public.access Xxxxxxx

Where Xxxxxxxx is your search text.

I would try

microsoft.public.access form position code
 
Is there a way to position a form by using code?
Thanks
DS

In the form's Open event:

DoCmd.MoveSize 2*1440, 3*1440

will position the form 2 inches from the left edge of the window, and
3 inches from the top.

All measurments are in Twips, 1440 per inch.
 
fredg said:
In the form's Open event:

DoCmd.MoveSize 2*1440, 3*1440

will position the form 2 inches from the left edge of the window, and
3 inches from the top.

All measurments are in Twips, 1440 per inch.
Thanks, I appreciate it!
DS
 
Back
Top