Aug 27, 2001 #1 xburgler Programmer Apr 6, 2001 12 DE How can i wait for a for to close to continue my code. I need to cal in a cicle (for ... next) a form and wait for the result to continue. tanks Jorge
How can i wait for a for to close to continue my code. I need to cal in a cicle (for ... next) a form and wait for the result to continue. tanks Jorge
Aug 27, 2001 #2 PaulF Technical User Jul 14, 2000 1,522 US open your form that you need the results from as acDialog Dim stDocName As String Dim stLinkCriteria As String stDocName = "YourFormName" DoCmd.OpenForm stDocName, , , stLinkCriteria, , acDialog PaulF Upvote 0 Downvote
open your form that you need the results from as acDialog Dim stDocName As String Dim stLinkCriteria As String stDocName = "YourFormName" DoCmd.OpenForm stDocName, , , stLinkCriteria, , acDialog PaulF