Align Form fully to the left

G

Guest

I want to align the Access 2007 Form fully to the left when it opens but it
moves closer to the center despite the fact the properties are set:
Auto center / No
Auto-resize / No
Is there a line of VB that will fix this, or a property I have missed?
 
D

Dorothy

I want to align the Access 2007 Form fully to the left when it opens but it
moves closer to the center despite the fact the properties are set:
Auto center / No
Auto-resize / No
Is there a line of VB that will fix this, or a property I have missed?

Hi there. I believe you have to open the form in design mode and
align it to the left there. Then save it and close it. When it
reopens, it should align to the left again.

Good luck.

Dorothy
 
G

Guest

I know how to open the Form in design view but can you tell me how to align
it to the left? Thanks.
 
F

fredg

I want to align the Access 2007 Form fully to the left when it opens but it
moves closer to the center despite the fact the properties are set:
Auto center / No
Auto-resize / No
Is there a line of VB that will fix this, or a property I have missed?

Look up the MoveSize method in VBA help.

code the Form's Open Event:
DoCmd.MoveSize 0,2*1440

The form will open at the left of the screen, 2 inches down from the
top. All measurements are in Twips, 1440 per inch.
 

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

Top