Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim intRes As Integer
intRes = MsgBox("save to Acturis?", vbYesNoCancel + vbDefaultButton1)
Select Case intRes
Case vbCancel
Cancel = True
Case vbYes
Sendkeys ("%(xy)")
DoEvents
Case vbNo
End Select
End Sub
Hi all
I'm wondering if anyone can help me here. My code above makes use of the Itemsend event however it doesn't work when I'm using the send as attachment function from within Excel/Word or where I have attachments generally. The sendkeys purely starts a thirdparty add-in
which we do not have access to the objects to call.
Ideally I'd also like the macro to run whenever the mail item is double clicked to open.
Thanks for your help in advance!