gpt4 book ai didi

c# - 来自 Lotus Notes 客户端的日历项目正在保存为草稿

转载 作者:太空宇宙 更新时间:2023-11-03 10:35:59 27 4
gpt4 key购买 nike

我正在使用 C# 应用程序创建 Lotus Notes 日历项。当我将日历项目保存在 NSF 文件的日历文件夹中时,它也被存储在 Draft 文件夹中。这是我的示例代码。

NotesDocument calDoc      = NotesDatabase.CreateDocument();

calDoc.AppendItemValue("Form", "Appointment");
.
.
.//Assiging values to CalDoc
.
.

calDoc.ComputeWithForm(true, false);
calDoc.Save(false, false, true); //On execution of save statement it saves calender in
//drafts as well as in calendar folder
calDoc.PutInFolder(path, true);

我在保存 dalendar 文档时更改了所有 bool 值,但得到的结果相同。非常感谢对此的任何帮助。提前致谢。

马尤什

最佳答案

添加值为“D”的项目 ExcludeFromView。这可以防止约会出现在草稿文件夹中。

calDoc.ReplaceItemValue("ExcludeFromView", "D"); 

关于c# - 来自 Lotus Notes 客户端的日历项目正在保存为草稿,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27798965/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com