G Guest Oct 31, 2004 #1 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
B Brett Collings [429338] Oct 31, 2004 #2 How would I get Access to automatically maximize all windows whenever I click the click the link to open them. Thanks Click to expand... 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
How would I get Access to automatically maximize all windows whenever I click the click the link to open them. Thanks Click to expand... 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