View Single Post
  #2  
Old September 15th 08, 02:46 PM posted to microsoft.public.outlook.program_addins
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default How to add a contact to a journal item?

The Links collection is what you want to work with. That has an Add method
that takes a contact item. Once the Link is added you can see the journal
item linkage in the Activities tab of the contact item and the link to the
contact item in the journal item.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"ringerxyz" wrote in message
...
Hi
I use the following code to create a journal item in outlook:

pApp.CreateInstance(__uuidof(Application));
pApp-CreateItem(olJournalItem,(IDispatch**)&pCallInfo) ;

pCallInfo-put_ContactNames(bsCaller);
pCallInfo-put_Subject(bsSubject);
pCallInfo-put_Body(bsBody);

pCallInfo-put_Type(bsType);

pCallInfo-Save();

Here my question is: i want to relate a contact to the journal item(which
is
a phone call entry),but i cann't found any calls i can use to achieve this
goal,
any tips?
thanks in advance


Ads