Maximizing Forms

G

gdsolovay

Is there a way to have ALL forms (I have dozens) maximize. I've heard about
using the docmd.maximize code for an individual form, but looking instead for
module language (or similar global fix) that would have all forms maximized
when opened.....THANKS!
 
S

Stuart McCall

gdsolovay said:
Is there a way to have ALL forms (I have dozens) maximize. I've heard
about
using the docmd.maximize code for an individual form, but looking instead
for
module language (or similar global fix) that would have all forms
maximized
when opened.....THANKS!

You've heard wrong. When you use DoCmd.Maximize *everything* is maximized.
That's how Microsoft's Multiple Document Interface works.
 
G

gdsolovay via AccessMonster.com

I'm very new to all this "docmd" stuff.

What would the full language be? and where does it belong?


Thanks again.
 
M

Mike Painter

gdsolovay said:
I'm very new to all this "docmd" stuff.

What would the full language be? and where does it belong?


Thanks again.

DoCmd.Maximize

I believ you wanted everything maximized so you always open the same form
first, it would go in the onOpen event for that form. (A menu?)
If not then it would go in OnOpen for every form.
 
Top