View Single Post
  #1  
Old January 19th 06, 01:36 PM posted to microsoft.public.outlook.program_addins
Ben
external usenet poster
 
Posts: 3
Default VB.net Cannot add userproperties

Hi,

I have made a Outlook Addins which use the Journal Folder.
In the items of that folder, i add a custom properties named "id" where i
store information.
It works on every Outlook 2001 to 2003, but i have find an Outlook 2003
where this field is not added and the operation failed.
Is this a security problem ?
Tks for help !

Ben

example, adding a Journal's item :

objJournalEntry.Type = "Phone Call"
objJournalEntry.Subject = "mysubjet"

objJournalEntry.Body = " the body"

objJournalEntry.Duration = "12"

objJournalEntry.Start = "12/12/2005..."

objJournalEntry.UserProperties.Add("id", OlUserPropertyType.olNumber).Value
= 1


Ads