Click here to Skip to main content
15,888,351 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I have an Outlook add-on that stores a value in user properties part of an Outlook TaskItem. The saving part works well using the code below, but I want to be able to display this field in ToDoList as read-only. For the moment I am displaying it but the user can change the value.
I didn't find a way to set read-only. The properties mentioned on msdn doesn't seem to allow this MSDN

My code is:
C#
if (task.UserProperties["TMSTaskID"] == null)
     {
                    task.UserProperties.Add("TMSTaskID", Outlook.OlUserPropertyType.olInteger, Type.Missing, Type.Missing);
                }
                task.UserProperties["TMSTaskID"].Value = _MyTask.TaskID;
                task.Save();

If anyone knows a solution or a workaround I'll really appreciate it.
Thank you
PS: I forgot to mention that I need to do this without custom forms
Posted
Updated 28-Dec-10 1:29am
v2

1 solution

No comment yet?

I'm needing this also. It makes me feel like this http://xkcd.com/979/
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900