I have several forms which are all maximized by
I have another form which I want to open as a sort of pop up window. So I've set its Form_Load event procedure to
However, this restores the maxmized form behind it as well.
Is there any way of just restoring the active form?
Or is there a way of setting a forms size?
(DoCmd.Movesize doesn't seem to work when DoCmd.Maximize has been used)
Thanks.
Code:
DoCmd.Maximize
Code:
DoCmd.Restore
Is there any way of just restoring the active form?
Or is there a way of setting a forms size?
(DoCmd.Movesize doesn't seem to work when DoCmd.Maximize has been used)
Thanks.
Comment