This is what I have in one of my forms:
Code:
Private Sub Form_Load()
DoCmd.Maximize
End Sub
To put the above code into VBA open your form in Design View. Make sure the little square box in the extreme upper left corner of the form has a blackened square inside that square box. If it doesn't just click inside that square box. (I use Access 2000, not sure how other versions of Access handle that). Click on the Properties icon on the Toolbar or right click on the box and select Properties. On the property sheet click on the Events tab. Double click on the text box just to the right of On_Load and then click the ellipsis (box with ... inside it). The VBA editor should open up. Copy and paste the DoDmd.Maximize statement between the "
Private Sub Form_Load()" and "End Sub" statements. Save and close the form and reopen as normal. Hopefully everything will work as desired.