Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个应用程序,应该从 Outlook 通讯簿中检索文本字段的用户名。所以一次只能选择一个名字(不应该有To,Cc,Bcc选项来选择多个收件人)。我已经使用 MAPI Interop 为 Outlook 2003 完成了此操作。
如何在 Outlook 2007 和 10 中实现类似的通讯录?
谢谢
使用类似下面的东西:
set SelectNames = Application.Session.GetSelectNamesDialog SelectNames.SetDefaultDisplayMode(olDefaultSingleName) SelectNames.Display