Outlook 2007 DASL 查询任务
我对这个快要疯了。 基本上我想根据该任务的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.