P
patterson_m
I want to display a message box when the user 'exits' the application.
Sub Auto_close ()
MsgBox "THANK YOU FOR YOUR FEEDBACK ", vbOKOnly + vbInformation,
"From the Agreement Finance Team"
Application.Quit
End Sub
The problem is that the message box appears twice, each time prompting
the user to click ok.
Any ideas why or how I can stop this.
Thanks
Mark
Sub Auto_close ()
MsgBox "THANK YOU FOR YOUR FEEDBACK ", vbOKOnly + vbInformation,
"From the Agreement Finance Team"
Application.Quit
End Sub
The problem is that the message box appears twice, each time prompting
the user to click ok.
Any ideas why or how I can stop this.
Thanks
Mark