MS Access OpenForm acDialog option does not seem to work
问题 This DoCmd.OpenForm fnew, , , , , acDialog Doesn't seem to stop code execution for some reason. Is it because I'm calling the function that has this method from another function and that is messing it up? E.g. func1 <code> Call func2 <func2 code> DoCmd.OpenForm fnew, , , , , acDialog <back to func1 code that executes even though i dont want it to until the form closes> 回答1: With acDialog as the OpenForm WindowMode parameter, your calling code should not continue until the form is closed. It