All forms are maximized

G

Guest

When I maximize the main form, all forms are maximized.

I just need to have the first form (a search form) maximized and all other
subsequent forms not maximized (normal window).

How do I accomplish this?

Thanks
 
A

Allen Browne

Try adding:
DoCmd.Restore
to the Activate event of the forms that should appear in windows, and:
DoCmd.Maximize
in the Activeate event of the one that should use the whole Access window.
 
L

Larry Linson

Mohan said:
When I maximize the main form, all forms are maximized.

I just need to have the first form (a search form) maximized and all other
subsequent forms not maximized (normal window).

If you want the main form maximized and visible in the background while all
the others are "normal", you may be able to do that with "popup" forms, but
they come with their own set of limitations and are somewhat inflexible. The
usual way to handle this is to size the main form, in "normal view", to
almost completely fill the screen... it'll be in the background when the
additional forms are displayed.

Larry Linson
Microsoft Access MVP
 

Ask a Question

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.

Ask a Question

Similar Threads


Top