0

我正在 VB 中开发 Outlook 加载项。我想要 Outlook 帐户中的所有注册电子邮件地址。我写了一些代码,它只给我用户的当前或默认邮件 ID,但我想要在 Outlook 帐户设置中注册的所有电子邮件 ID。

UserName = Me.Application.ActiveExplorer().Session.CurrentUser.Address   
4

2 回答 2

0

如果我正确理解了这个问题,Sandeep 想要的是账户,而不是地址簿。

Outlook 应用程序对象有一个Accounts集合。遍历它以获取所有the accounts available for the current profile.

于 2013-06-06T10:16:58.197 回答
0

您可以使用以下代码访问全局地址,并在此处获取更多参考。

Outlook.AddressList gal = Application.Session.GetGlobalAddressList();
于 2013-06-06T08:01:55.510 回答