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
 

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