To maximize an Access form automatically, use the "Maximize" method of the DoCmd Object.
Example, let's say I have a form called MainForm, on the "On Load" Event property of the form, I would use this sub procedure:
Sub MainForm_Load()
DoCmd.Maximize
End Sub