Reply All event not trapping

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top