I have created a form in access. Whenever it is open, it opens in a maximied
view (fill screen), how can I set it up so that it opens in a minimised view
If you actually mean minimized, then set the Window Mode arguement of the
OpenForm method to acIcon. If, on the other hand, you want it smaller than
fully maximized, in desing view, set the size of the form, then save it.

Signature
Dave Hargis, Microsoft Access MVP
> I have created a form in access. Whenever it is open, it opens in a maximied
> view (fill screen), how can I set it up so that it opens in a minimised view
nir020 - 08 Nov 2007 15:49 GMT
Thnaks
It was smaller than fully maximised I was after, and I am afraid I have
already tried what you suggested but every time I close the database then
reopen it and reopen the form it set to maximise, is there anything in the
properites I could re-set
> If you actually mean minimized, then set the Window Mode arguement of the
> OpenForm method to acIcon. If, on the other hand, you want it smaller than
> fully maximized, in desing view, set the size of the form, then save it.
>
> > I have created a form in access. Whenever it is open, it opens in a maximied
> > view (fill screen), how can I set it up so that it opens in a minimised view
fredg - 08 Nov 2007 16:09 GMT
> Thnaks
>
[quoted text clipped - 9 lines]
>>> I have created a form in access. Whenever it is open, it opens in a maximied
>>> view (fill screen), how can I set it up so that it opens in a minimised view
Code the form's Open event:
DoCmd.Restore
Note: This will cause all other objects to also open at less then
Maximized.
If you want the other objects Maximized after you exit this form,
code this Form's Close event:
DoCmd.Maximize.

Signature
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail