if you mean how to stop the form from closing....
however you really need to take a close look at your logic.....Code:if vbNo then e.Cancel = True endif
using that code, the check for vbNo will no be done if No is selected.vb Code:
If vbYes Then Close() If vbNo Then End If End If




Reply With Quote