form size

  • Thread starter Thread starter Dave
  • Start date Start date
Dave said:
Hi

How can i start a form maximised for the screen?

Thanks

You can maximize both the Access application window and the form itself.
In the form's Open event, you could put code like this ("air code"):

'----- start of code -----
Private Sub Form_Open(Cancel As Integer)

DoCmd.Maximize
RunCommand acCmdAppMaximize

End Sub
'----- end of code -----
 
Thanks

Dirk Goldgar said:
You can maximize both the Access application window and the form itself.
In the form's Open event, you could put code like this ("air code"):

'----- start of code -----
Private Sub Form_Open(Cancel As Integer)

DoCmd.Maximize
RunCommand acCmdAppMaximize

End Sub
'----- end of code -----

--
Dirk Goldgar, MS Access MVP
www.datagnostics.com

(please reply to the newsgroup)
 

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