I want a form that is Modal, PopUp, and Dialog, but that is hidden most of the time so that the fields are available to the code of my other forms.
Modal means that only the form can have control, until it is closed or hidden, I hope.
PopUp means that the form remains on top of other forms, I hope.
Dialog means that the code stops until the form is closed or hidden, then the code continues, I hope.
The form ("fOptions") properties are Pop Up=Yes, Modal=Yes, and BorderStyle=Dia log.
I open form with:
DoCmd.OpenForm "fOptions", acNormal, , , , , acHidden
or
DoCmd.OpenForm "fOptions", acNormal, , , , acDialog, acHidden
When I do Forms!fOptions. Visible = True, the code doesn't wait for the form to be hidden again (not Dialog?).
How may I achieve this objective?
Old Birdman
P.S. Is there a thescriptsforum for dummies?
Modal means that only the form can have control, until it is closed or hidden, I hope.
PopUp means that the form remains on top of other forms, I hope.
Dialog means that the code stops until the form is closed or hidden, then the code continues, I hope.
The form ("fOptions") properties are Pop Up=Yes, Modal=Yes, and BorderStyle=Dia log.
I open form with:
DoCmd.OpenForm "fOptions", acNormal, , , , , acHidden
or
DoCmd.OpenForm "fOptions", acNormal, , , , acDialog, acHidden
When I do Forms!fOptions. Visible = True, the code doesn't wait for the form to be hidden again (not Dialog?).
How may I achieve this objective?
Old Birdman
P.S. Is there a thescriptsforum for dummies?
Comment