L
Leif
I'm opening a form using the docmd.openform command. It looks like:
DoCmd.OpenForm "ZoomWindow", acNormal, , , , acDialog
I open it as a dialog to give a modal window, in other words, the user must
address the window and close before returning to the main window. However,
when I open the form as a dialog I lose the ability to resize the window. If
I take off the acDialog I can resize the window, but it is no longer modal.
Does anyone know how I can get a modal window that is also resizable?
DoCmd.OpenForm "ZoomWindow", acNormal, , , , acDialog
I open it as a dialog to give a modal window, in other words, the user must
address the window and close before returning to the main window. However,
when I open the form as a dialog I lose the ability to resize the window. If
I take off the acDialog I can resize the window, but it is no longer modal.
Does anyone know how I can get a modal window that is also resizable?