Forms Resizing

M

Mary Hartman

Using Access 2000

I have created a control panel which opens mazimized on_load.

Some of the forms its command buttons control are small. I open them
restored.

When I click on one of these smaller forms my control panel also
resizes to restored from maximized.

What am I doing wrong?
 
L

Lynn Trapp

Put the following code in the Activate event of your control panel.

DoCmd.Maximize
 
M

Mary Hartman

Put the following code in the Activate event of your control panel.

DoCmd.Maximize


I now have DoCmd.Maximize in on_load, on_resize, on_activate,
on_dactivate.

The control panel is now like a strob light.

When I open the smaller forms, it still resizes to "restore".
When I close the smaller froms, it now automatically resizes to
"maximize"????

There must be a way to keep it maximized and let the smaller forms
open in front of it?

Please? Yes? No?
 
M

missinglinq via AccessMonster.com

On the forms you want to appear on top of your main form, set:

Border Style Dialog
Popup YES
Modal YES

--
There's ALWAYS more than one way to skin a cat!

Answers/posts based on Access 2000

Message posted via AccessMonster.com
 

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

Top