How would I modify the following code to trigger the event myMailItem_ItemSend
only when the email is sent by myMacro1
, but not in other cases (such as myMacro2
)?
The event should be triggered especially for those macros using the myMailItem object.
Public WithEvents myMailItem As Outlook.MailItem
Public Sub Initialize_handler()
Set myMailItem = Outlook.MailItem
End Sub
Private Sub myMailItem_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim prompt As String
prompt = "Are you sure you want to send " & Item.Subject & "?"
If MsgBox(prompt, vbYesNo + vbQuestion, "Send confirmation") = vbNo Then
Cancel = True
End If
End Sub
'Should trigger the send confirmation msgbox
Private Sub myMacro1()
Dim objApp As Outlook.Application
Set objApp = Application
Set myMailItem = objApp.ActiveInspector.CurrentItem.ReplyAll
myMailItem.Display
End Sub
'Should NOT trigger the send confirmation msgbox
Private Sub myMacro2()
Dim objApp As Outlook.Application
Set objApp = Application
Dim oEmail As Outlook.mailItem
Set oEmail = objApp.ActiveInspector.CurrentItem.ReplyAll
oEmail.Display
End Sub
Your kind help would be appreciated.
I would go for this:
Dim TriggerMsgBox As Boolean
. By default, the variable will be false.myMacro1()
. Only in that case, it will becomeTrue
. Else, it will beFalse
.myMailItem_ItemSend
event: if the variable isTrue
(meaning we just passed bymyMacro1()
), then you need to prompt theMsgBox
. Else, you will just pass by. Of course, don't forget to reset the variable toFalse
after theMsgBox
is hit, else you will keep on showing it even later.In your code it would be: