Open form within a For/Next loop

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
 
K

Ken Snell [MVP]

Open the form as a Dialog form:

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

Code will pause until the form is closed.
 
Top