首页 新闻 会员 周边 捐助

outlook 二次开发添加字段

0
悬赏园豆:20 [待解决问题]

  Outlook.Inspector currWind = Globals.ThisAddIn.Application.ActiveInspector();
            Outlook.AppointmentItem app = (Outlook.AppointmentItem)currWind.CurrentItem;

            app.UserProperties.Add("testaddfiled", Outlook.OlUserPropertyType.olText, true, Type.Missing);
            app.UserProperties["testaddfiled"].Value = "Green";
            app.Subject = "测试自定义添加字段";
            app.Save();

 

这样添加不成功

走过无痕小不点的主页 走过无痕小不点 | 初学一级 | 园豆:180
提问于:2010-12-15 14:12
< >
分享
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册