Controlling form size

  • Thread starter Thread starter Alan Z. Scharf
  • Start date Start date
A

Alan Z. Scharf

1. I have a main form whcih is maximized.

When I open a dialog box from a button on that form, the dialoog is
maximized also.

Is there a way to prevent that?

2. As an alternative, what is the equivalent command to 'Docmd.Maximize'
which would return a window to non-maximized state.

Thanks.

Alan
 
1. I have a main form whcih is maximized.

When I open a dialog box from a button on that form, the dialoog is
maximized also.

Is there a way to prevent that?

Are you opening in Dialog?
DoCmd.OpenForm "FormName", , , , , acDialog?
 
Back
Top