![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
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 |
#2
|
|||
|
|||
![]()
Did you try creating the property, then setting its value:
prop = objJournalEntry.UserProperties.Add("id", OlUserPropertyType.olNumber) prop.Value = 1 Does the folder have an existing proeprty named id of another type? -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Ben" wrote in message ... 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 |
#3
|
|||
|
|||
![]()
Tks for help !
I will try this method. And the property "id" doesn't already exist. "Sue Mosher [MVP-Outlook]" a écrit dans le message de news: ... Did you try creating the property, then setting its value: prop = objJournalEntry.UserProperties.Add("id", OlUserPropertyType.olNumber) prop.Value = 1 Does the folder have an existing proeprty named id of another type? -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Ben" wrote in message ... 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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Net folder | Heidi | Outlook - Using Forms | 9 | July 24th 07 05:34 PM |
Net Folders Email Button | Abe Froman | Outlook - Calandaring | 0 | March 1st 06 05:32 PM |
[email protected] | Chuck | Outlook - General Queries | 2 | March 1st 06 02:50 PM |
Net Folders | [email protected] | Outlook - General Queries | 1 | February 14th 06 11:13 AM |
Cannot Create Folder -- VB.NET | Randy Given | Outlook - General Queries | 0 | January 10th 06 01:50 AM |