Maximize Access when Launched

  • Thread starter Thread starter Tom Grillot
  • Start date Start date
T

Tom Grillot

Is there a way, through code, to maximize the Access window as soon as it's
launched?

Thanks,
Tom
 
In the Open event procedure of your startup form ...

Private Sub Form_Open(Cancel As Integer)

DoCmd.RunCommand acCmdAppMaximize

End Sub
 
This is not code, but the easiest way I have found to accomplish this is to
create a "maximize" action macro, and apply the macro name to the "on open"
property of your start-up form/view.
 
Great - worked perfectly. Thanks

Brendan Reynolds said:
In the Open event procedure of your startup form ...

Private Sub Form_Open(Cancel As Integer)

DoCmd.RunCommand acCmdAppMaximize

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

Back
Top