A
Ashu
Hello all,
Im trying to capture the Replyall event in Outlook 2000 when the user
selects the item in the inspector window and then hits ReplyAll the
event is not captured.
Surprisingly, If i open the item then I can capture the Replyall
Event.
I tried using the Inspector Collection objects but still didnt get any
success.
Any help or ideas will be greatly appreciated.
Part of my code is as follows:
'Get the current item selected in the inspector window
Set itm = oInspector.CurrentItem
Select Case itm.Class
Case olMail
MsgBox "in select o"
Set oItm = itm
End Select
'Reply all method is here but it never fires
Private Sub oItm_ReplyAll(ByVal Response As Object, Cancel As Boolean)
MsgBox "Reply all fired"
End Sub
Thanks.
Im trying to capture the Replyall event in Outlook 2000 when the user
selects the item in the inspector window and then hits ReplyAll the
event is not captured.
Surprisingly, If i open the item then I can capture the Replyall
Event.
I tried using the Inspector Collection objects but still didnt get any
success.
Any help or ideas will be greatly appreciated.
Part of my code is as follows:
'Get the current item selected in the inspector window
Set itm = oInspector.CurrentItem
Select Case itm.Class
Case olMail
MsgBox "in select o"
Set oItm = itm
End Select
'Reply all method is here but it never fires
Private Sub oItm_ReplyAll(ByVal Response As Object, Cancel As Boolean)
MsgBox "Reply all fired"
End Sub
Thanks.