View Single Post
 
Old 07-09-2018, 04:53 PM
johnv johnv is offline Windows 10 Office 2016
Novice
 
Join Date: Jul 2018
Posts: 19
johnv is on a distinguished road
Default

Hi

you can try to use the event handler that fires when you send an item. Because when you accept a meeting you send an item. So you first check if it is a meeting request and if so you run your code.

like this

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)

If InStr(Item.MessageClass, "IPM.Schedule.Meeting.Request") > 0 Then
'do your thing here

end if
end sub
Reply With Quote