Multiple function calls within a function

  • Thread starter Thread starter Kara
  • Start date Start date
K

Kara

Guest
I have a function with a bunch of code and within that code I have a 'Call' statement to another function which displays a popup form. My problem is that the original function keeps processing the rest of the code and I need it to wait until the user closes the popup form.

Any ideas?
Thanks.
 
Kara,

try this

DoCmd.OpenForm FormName:="Your Form Name", windowmode:=acDialog

' Stops Here And Waits
' For Information To Returm From Form

Skip
 

Users who are viewing this thread

Back
Top Bottom