Macro to open form at the Maximum Size (1 Viewer)

access2010

Registered User.
Local time
Today, 14:57
Joined
Dec 26, 2009
Messages
1,021
We use macros often and would like to have the form open at Maximum size
1605939176251.png

Could I please receive a suggestion on how to do this as, the above does not work.

Thank you.
Crystal
 

theDBguy

I’m here to help
Staff member
Local time
Today, 14:57
Joined
Oct 29, 2018
Messages
21,453
Hi. Have you tried using Maximize in the Form's Open event?
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Tomorrow, 05:57
Joined
May 7, 2009
Messages
19,231
open the Form in design view.
add code to it's Open event:

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

Users who are viewing this thread

Top Bottom