So I have an Access application, and I’d like some forms to be maximised when they are opened, and others to be medium-sized when they are opened. However, if I try something like this:
Private Sub Form_Activate() DoCmd.Maximize End Sub
or
Private Sub Form_Activate() DoCmd.Restore End Sub
it has the effect of maximizing or restoring every open window, which isn’t what I’m looking for.
Is there any way around this?
I’m using Access 2003.
ΤΖΩΤΖΙΟΥ is 100% right when saying that either all are maximised, or none. If you really want to manage this issue, you’ll have to read a little bit here (look at the code proposed and the way to call it), understand what is done, and eventually build your own solution depending on your needs.