Bruce Johnson
Member
- Outlook version
- Outlook 2013 32 bit
- Email Account
- POP3
I am trying to setup a macro so that every time I press reply or reply all, it will set the Send Replies to and then an address, but it is not firing at all.
I have it in the ThisOutlookSession and other codes I have here are working. I have the security settings to allow ALL MACROS
I have made the code VERY simple at this point:
' Reply
'//slipstick.me/44b0w
Private Sub oItem_Reply(ByVal Response As Object, Cancel As Boolean)
Dim z As Integer
z = MsgBox("here")
End Sub
Private Sub oItem_Replyall(ByVal Response As Object, Cancel As Boolean)
Dim z As Integer
z = MsgBox("here RA")
End Sub
Hitting the REPLY or REPLYALL do not fire the macro.
I do have another macro in the ThisOutlookSession that works.
I am using MS outlook 2010, (version 14.7208.5000 (32 bit)
Help!
I have it in the ThisOutlookSession and other codes I have here are working. I have the security settings to allow ALL MACROS
I have made the code VERY simple at this point:
' Reply
'//slipstick.me/44b0w
Private Sub oItem_Reply(ByVal Response As Object, Cancel As Boolean)
Dim z As Integer
z = MsgBox("here")
End Sub
Private Sub oItem_Replyall(ByVal Response As Object, Cancel As Boolean)
Dim z As Integer
z = MsgBox("here RA")
End Sub
Hitting the REPLY or REPLYALL do not fire the macro.
I do have another macro in the ThisOutlookSession that works.
I am using MS outlook 2010, (version 14.7208.5000 (32 bit)
Help!