Outlook 2007 DASL 查询任务

发布于 2024-07-14 20:24:57 字数 439 浏览 5 评论 0原文

我对这个快要疯了。 基本上我想根据该任务的 EntryID 检索该任务。 所以我所做的如下:

Outlook.MAPIFolder OutlookTasksFolder = Application.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderTasks); string filter = String.Format("@SQL=\"urn:schemas:tasks:entryid\" like '%{0}%'", myEntryID); Outlook.Items OutlookTasksDataItems = OutlookTasksFolder.Restrict(filter);

但我不工作。 我不知道如何格式化我的查询来获取相应的项目(实际上应该只有一个)。

谁能帮帮我吗? 谢谢

I'm going crazy on this one.
Basically I want to retrieve a task based on the EntryID of this task.
so what I do is the following:

Outlook.MAPIFolder outlookTasksFolder = Application.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderTasks);
string filter = String.Format("@SQL=\"urn:schemas:tasks:entryid\" like '%{0}%'", myEntryID);
Outlook.Items outlookTasksDataItems = outlookTasksFolder.Restrict(filter);

but i does not work.
I don't know how to format my query to get the corresponding items (there should be only one really).

can anyone please help me?
thank you

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

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

发布评论

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

评论(1

兮子 2024-07-21 20:24:57

Outlook.MAPIFolder OutlookTasksFolder = Application.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderTasks);

Outlook.TaskItem myOutlookTask = (Outlook.TaskItem)Application.Session.GetItemFromID(myEntryID, OutlookTasksFolder.EntryId);

应该可以做到这一点。

Outlook.MAPIFolder outlookTasksFolder = Application.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderTasks);

Outlook.TaskItem myOutlookTask = (Outlook.TaskItem)Application.Session.GetItemFromID(myEntryID, outlookTasksFolder.EntryId);

That should do it.

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