Maximize forms versus Pop-up Forms

  • Thread starter tobesurveyor via AccessMonster.com
  • Start date
T

tobesurveyor via AccessMonster.com

Hello all,

I have a main switchboard form called frmMainSwitchboard. frmMainSwitchboard
has an event to Maximize via a DoCmd.Maximize on the On_Open Event to this
form.
There will be times though, where when the user wants to pick certain items
on the frmMainSwitchboard, I have a form (frmPopUp)open that may contain a
list box, combo box or a combination of both. This form that I have open has
an On_Open Event of:
DoCmd.MoveSize 2.5 * 1440, 2.5 * 1440, 3.25 * 1440, 1.75 * 1440

When I am on the form frmMainSwitchboard (which is maximized) and I click on
the control to open frmPopUp, the On_Open Event seems to be passed over and
this form is maximized. I have tried putting the DoCmd.MoveSize in the
On_Resize event and still it maximizes. How should I go about keeping
frmMainSwitchboard maximized and the frmPopUp as a sized form based upon the
Movesize command?

Any help would be greatly appreciated.
Thanks,
Chris
 

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