Open form at Top Left corner

  • Thread starter Bradley C. Hammerstrom
  • Start date
B

Bradley C. Hammerstrom

A2K

With AutoCenter set to No, I want the form to open exactly at the top left
corner of the Access Window.

Brad H.
 
D

Dirk Goldgar

Bradley C. Hammerstrom said:
A2K

With AutoCenter set to No, I want the form to open exactly at the top
left corner of the Access Window.

You can do this easily with a line of code in the form's Open event:

Private Sub Form_Open(Cancel As Integer)
DoCmd.MoveSize 0, 0
End Sub
 

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