Go to the forms properties and then click the Event tab, look for the On Load
event, click in this and you will see a button with three dots on it to the
right, click this and you will be given three options, choose code builder.
you should now be in the vba editor and see basically the same as below
Private Sub Form_Load()
End Sub
place this bit of code in the event so it looks like this
Private Sub Form_Load()
Docmd.maximise
End Sub
This will maximise your form when it is loaded. This can be achieved by
using a macro but I dont like macros lol.
Mike J. Soames
keep on coding