我正在开发一个Outlook加载项,并试图将UserProperty添加到约会项目。但是第一次我得到UnauthorizedAccessException。当我第二次调用该方法时,它可以工作并且UserProperty已成功添加到约会中。我更改了属性名称后,出现了问题。在添加此属性之前,我是否必须以某种方式注册该属性?

Appointment.AddCustomProperty(AppointmentItem, "CRMConKat", OlUserPropertyType.olText, cat.katName)

最佳答案

没有AddUserProperty方法。您是说您 call AppointmentItem.UserProperties.Add吗?
您可以修改任何其他约会属性吗?
您在所有约会中都收到此错误吗?
如何打开约会?
您是如何更改物业名称的?您是说已经设置好了吗?

关于.net - 如何将UserProperty添加到Outlook约会项目,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14275573/

10-13 03:51