A amy Sep 30, 2004 #1 I have a form "Registration". I want the form to open as maximized on the screen. How can I do that? Thanks you for helping,
I have a form "Registration". I want the form to open as maximized on the screen. How can I do that? Thanks you for helping,
S StCyrM Sep 30, 2004 #2 Hi Amy On the form load event enter DoCmd.Maximize Best Regards Maurice St-Cyr Micro Systems Consultants, Inc.
Hi Amy On the form load event enter DoCmd.Maximize Best Regards Maurice St-Cyr Micro Systems Consultants, Inc.
L Lynn Trapp Sep 30, 2004 #3 Place the following code in the Activate event of the form: DoCmd.Maximize
M M Skabialka Sep 30, 2004 #4 Open the properties window, under Events: On Open =[DoCmd].[maximize] And if you want it to go back to a normal, not maximised, previous form: On Close =[DoCmd].[restore] This works on reports too. HTH Mich
Open the properties window, under Events: On Open =[DoCmd].[maximize] And if you want it to go back to a normal, not maximised, previous form: On Close =[DoCmd].[restore] This works on reports too. HTH Mich
R rowiga Sep 30, 2004 #5 Use this in the properties page for the On Open event for the form. =DoCmd.Maximize
L Lynn Trapp Sep 30, 2004 #6 I would recommend using the Activate event instead. If the user navigates away from the form and restores the objects, then navigating back to the form it will immediately maximize again.
I would recommend using the Activate event instead. If the user navigates away from the form and restores the objects, then navigating back to the form it will immediately maximize again.