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! |
|
Sergey Grischenko
Add-in Express team
Posts: 7235
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.
|
|