Macro to open form at the Maximum Size

access2010

Registered User.
Local time
Today, 01:12
Joined
Dec 26, 2009
Messages
1,115
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
 
Hi. Have you tried using Maximize in the Form's Open event?
 
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

Back
Top Bottom