Open form within a For/Next loop

  • Thread starter Thread starter Paul Gregory
  • Start date Start date
P

Paul Gregory

I wish to open a form within a for/next loop but have the loop wait
until I close the form before it continues processing commands.

Is this possible?

Thanks
 
Open the form as a Dialog form:

DoCmd.OpenForm "FormName", , , , , acDialog

Code will pause until the form is closed.
 
Ken said:
Open the form as a Dialog form:

DoCmd.OpenForm "FormName", , , , , acDialog

Code will pause until the form is closed.
Thanks

Paul
 

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