使用 c#.net 从 Outlook 检索数据
我正在尝试从任务管理器类型的程序访问任务,该程序将允许从 Outlook 导入任务并在屏幕上直观地显示任务。
我可以显示该任务,但无法从 Outlook 中检索任何任务。
如何解决这个问题?
谢谢,
汤姆
I am trying to access tasks from a task manager type program, that will allow for tasks to be imported from outlook and displayed visually on screen.
I can display the task, but am having trouble retrieving any task out of outlook.
How can this be resolved?
Thanks,
Tom
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您将 Outlook 客户端连接到 Microsoft Exchange Server,您可以通过 webDAV 访问其任务列表。
请参阅此论坛主题:
http://objectmix.com/microsoft-exchange/269091-exchange -tasks-list-webdav.html
If you connect your Outlook client to Microsoft Exchange Server you can access it's task list through webDAV.
See this forum thread:
http://objectmix.com/microsoft-exchange/269091-exchange-tasks-list-webdav.html
如果您询问 MS Office 软件包中的 MS Outlook,则可以通过自动化完成此操作,请参阅 http://msdn.microsoft.com/en-us/library/aa210897(v=office.11).aspx
If you are asking about MS Outlook from MS Office package then this could be done via automation, see http://msdn.microsoft.com/en-us/library/aa210897(v=office.11).aspx
查看适用于 Office 的 Visual Studio 工具。它是一个 .NET 库,可以轻松与所有 Office 组件集成。这是从 .NET 执行此操作的最简单方法。
Check out Visual Studio Tools for Office. It's a .NET library that allows easy integration with all Office components. It's the easiest way to do it from .NET.
找到本教程
http://geekswithblogs.net/TimH/archive/2006/ 05/26/79720.aspx
工作得很好,并使用 Visual Studio 中的自动完成功能找到了每个任务的每个不同部分。
感谢大家的帮助
Found this tutorial
http://geekswithblogs.net/TimH/archive/2006/05/26/79720.aspx
Worked well and found each of the different parts of each task usig the autocomplete within visual studio.
Thanks all for your help