Changing meeting appointment organizer?

  • Thread starter Thread starter Dieter Verlaeckt
  • Start date Start date
D

Dieter Verlaeckt

Hi,

I'm developing a COM add-in for Outlook 200X using VS .NET 2003.

Does anyone know of a way to programatically change the organizer of a
meeting appointment? Outlook seems to always use the current user as the
organizer.. which is kind of logical but i wanna change it anyway :)

TIA
Dieter
 
Using ExMAPI
there is a property for recipient
0x5FFD0003 or PROP_TAG(PT_LONG, 0x5FFD)
value 3 is meeting organizer
value 1 is ordinary recipient

use IMessage->ModifyRecipients

WBR
Henry
 
Thanks Henry

Where can I find an extensive listing of all the extended MAPI properties?
There doesn't seem to be a lot of documentation about them on the net.

Dieter
 
Back
Top