L
Lucien Levreault
Hello,
I would like to keep my custom published form open for further editing after
clicking the Send button. I have used the following code but it doesn't seem
to work:
Function Item_Close()
Msg = " Would you like to keep this form open for further updates? "
Response = MsgBox(Msg, vbYesNo+vbInformation, "Question")
If Response=vbYes then
Item_Close = False
Exit function
End if
Item_Close = True
End Function
This code works when I press ESC or try to close the form but not when I
click on Send. Any help would be appreciated.
I would like to keep my custom published form open for further editing after
clicking the Send button. I have used the following code but it doesn't seem
to work:
Function Item_Close()
Msg = " Would you like to keep this form open for further updates? "
Response = MsgBox(Msg, vbYesNo+vbInformation, "Question")
If Response=vbYes then
Item_Close = False
Exit function
End if
Item_Close = True
End Function
This code works when I press ESC or try to close the form but not when I
click on Send. Any help would be appreciated.