How to open Access files on maximised view as default

M

Murfology

Hi,

Can anyone tell me how to reset Access 2003 so that all files and databases
will open on maximised view?

Thanks

Murfology
 
D

Douglas J. Steele

It's not really a setting of Access.

Maximize any object, and all other objects will be maximized.

You can automate opening a form by using the Maximize method in its Load
event:

Private Sub Form_Load()

DoCmd.Maximize

End Sub
 
Top