Pop Up Form

  • Thread starter Thread starter Richard S.
  • Start date Start date
R

Richard S.

I have a form with these properties:
PopUp: Yes; Modal: Yes; BorderStyle: Dialog. I intend it as an input point
for the user to select a choice before continuing with the flow of logic.
Howver, the program logic continues while the form is open and waiting for
user input.

What am I lacking to halt the processing until return of the user's response?
 
Hi Richard,

Make sure you use acDialog for the WindowMode value of the
DoCmd.OpenForm method.

Clifford Bass
 
Open it in dialogue mode using the acDialog constant as the WindowMode
argument of the OpenForm method, e.g.

DoCmd.OpenForm "YourForm", WindowMode:=acDialog

This will cause code execution to be suspended until the dialogue form
is closed or hidden. You don't need to set its PopUp or Modal
properties to True.

Ken Sheridan
Stafford, England
 

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

Back
Top