zoso
Well-known Member
- Joined
- Oct 23, 2003
- Messages
- 725
Hi there!
I have the following code:
What I'm after is some code in place of the ???????? so that Outlook remains open.
Hope you can help - and thanks!
I have the following code:
Code:
Private Sub Application_Quit()
Dim Response As Integer
Dim Title As String
Dim Message As String
Title = "Confirm"
Message = "Do you really want to quit Outlook?"
Response = MsgBox(Message, vbYesNo, Title)
If Response = vbNo Then
???????????????
End If
End Sub
Hope you can help - and thanks!