Suspending code for form input

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a situation where I need to suspend code to pop up a form asking for
the user's input. When the user provides the input, the form closes and the
code then resumes based on the user's input.

Right now, the code does not suspend and just continues running after the
form is opened. How do I suspend the code so I can get the user's input?

Thanks,

Michael
 
Open the pop-up form in Dialog mode. (Use acDialog as the 6th parameter in
the OpenFile method)
 
Michael said:
I have a situation where I need to suspend code to pop up a form asking for
the user's input. When the user provides the input, the form closes and the
code then resumes based on the user's input.

Right now, the code does not suspend and just continues running after the
form is opened. How do I suspend the code so I can get the user's input?


Open the form in Dialog mode. See Help - OpenForm for
details.
 
Back
Top