Maximize all windows

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How would I get Access to automatically maximize all windows whenever I click
the click the link to open them.
Thanks
 
How would I get Access to automatically maximize all windows whenever I click
the click the link to open them.
Thanks


Private Sub Report_Open(Cancel As Integer)
DoCmd.Maximize
End Sub

But you must remember that unless you restore it on closing, *all*
your forms including the Database window will open Maximised

Private Sub Report_Close()
DoCmd.Restore
End Sub


Cheers,
Brett
 
Back
Top