Possible to alter a invite after SEND button is clicked?

Add-in Express™ Support Service
That's what is more important than anything else

Possible to alter a invite after SEND button is clicked?
alter a invite after SEND button is clicked? 
d henderson




Posts: 39
Joined: 2006-03-06

I wish to create a meeting invite item then, when I click SEND, alter the Subject of the item before it actually gets sent.
Is it possible to do such a thing?
Pointers or a sample (VB.net MSVS 5.0) would be great!
Posted 10 Nov, 2006 00:08:43 Top
Sergey Grischenko


Add-in Express team


Posts: 7233
Joined: 2004-07-05
Hi Don.

Please try the following code:

Private Sub adxOutlookEvents_ItemSend(ByVal sender As Object, ByVal e As AddinExpress.MSO.ADXOlItemSendEventArgs) Handles adxOutlookEvents.ItemSend
Dim item As Outlook._MeetingItem

If TypeOf e.Item Is Outlook._MeetingItem Then
item = CType(e.Item, Outlook._MeetingItem)
item.Subject = "My New Subject"
item.Save()
End If

End Sub

P.S. Note that we take up your forum requests in the order we receive them. Besides, it may take us some time to investigate your issue. Please be sure we will let you know as soon as the best possible solution is found.
Posted 10 Nov, 2006 08:46:24 Top