如何区分“文档”用户在 Lotus Notes 中创建的文件夹数量?

发布于 2024-08-05 14:52:47 字数 237 浏览 5 评论 0 原文

我可以通过以下方式访问用户创建的文件夹:

 NotesView     folder        = _notesDatabase.GetView(folderName);
 NotesDocument folderDoc     = folder.GetFirstDocument();

但问题是它可以包含“邮件”、“日历”和“待办事项”。

我无法区分它们。有什么想法吗?

I am able to access User Made Folder as:

 NotesView     folder        = _notesDatabase.GetView(folderName);
 NotesDocument folderDoc     = folder.GetFirstDocument();

But problem is that it can consist of "Mail","Calendar" and "To Do".

I am not able to differentiate them. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无声静候 2024-08-12 14:52:47

要按文档类型进行区分,通常可以在文档上使用“表单”字段值。因此,在获取文档句柄(NotesDocument 对象)后,使用 getItemValue 获取表单字段的值。例如:

...
NotesDocument folderDoc = folder.getFirstDocument();
String sForm = folderDoc.getItemValue("form");
if (sForm == "Memo") {
 // Mail
}
if (sForm == "Appointment") {
 // Calendar entry
}
if (sForm == "Task") {
 // To Do
}
...

To differentiate by document type, you can generally use the "form" field value on a document. So, after you get the document handle (the NotesDocument object), use getItemValue to get the value of the form field. For example:

...
NotesDocument folderDoc = folder.getFirstDocument();
String sForm = folderDoc.getItemValue("form");
if (sForm == "Memo") {
 // Mail
}
if (sForm == "Appointment") {
 // Calendar entry
}
if (sForm == "Task") {
 // To Do
}
...
寒尘 2024-08-12 14:52:47

NotesView 有 NotesView.IsFolder 和 NotesView.IsPrivate

IsPrivate-只读。指示条目是否特定于个人。

希望有帮助。欲了解更多信息,请访问
http://publib.boulder.ibm.com/infocenter/domhelp/v8r0/index.jsp?topic=/com.ibm.help.domino.designer85.doc/DOC/H_WHAT_S_NEW_IN_RNEXT_CHAP.html

并搜索 NotesView

Josh

The NotesView has a NotesView.IsFolder and NotesView.IsPrivate

IsPrivate- Read-only. Indicates whether an entry is specific to an individual.

Hope that helps. For more information goto
http://publib.boulder.ibm.com/infocenter/domhelp/v8r0/index.jsp?topic=/com.ibm.help.domino.designer85.doc/DOC/H_WHAT_S_NEW_IN_RNEXT_CHAP.html

and search for NotesView

Josh

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文