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.
 
Back
Top