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)
 
Back
Top