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.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.