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
 

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