(Q) From a form, I'm opening another form to get some infomation from
users. Then after closing this popup form, I want to resume my code execution from Form1
normally. However, Access doesn't wait for the second form to close and instead continues
executing code. How do I make Access wait till the second form is closed?
(A) Open the second form modally. For example,
Docmd.OpenForm "SomeForm", , , , ,acDialog
|