NameSpace.GetSelectNamesDialog 方法 (Outlook)

获取当前会话的 SelectNamesDialog 对象。

语法

expressionGetSelectNamesDialog

表达 一个代表“NameSpace”对象的变量。

返回值

当前会话的一个 SelectNamesDialog 对象。 SelectNamesDialog 对象支持显示用户当前会话中的一个或多个地址列表中选择项的 选择姓名对话框。

示例

下面的代码示例演示如何实例化的 SelectNamesDialog 实例,对于当前会话,并使用它来显示对话框类似于 Outlook 用户界面中的 选择姓名对话框中的联系人文件夹中的项。

Sub ShowContactsInDialog() 
 Dim oDialog As SelectNamesDialog 
 Dim oAL As AddressList 
 Dim oContacts As Folder 
 
 Set oDialog = Application.Session.GetSelectNamesDialog 
 Set oContacts = _ 
 Application.Session.GetDefaultFolder(olFolderContacts) 
 
 'Look for the address list that corresponds with the Contacts folder 
 For Each oAL In Application.Session.AddressLists 
 If oAL.GetContactsFolder = oContacts Then 
 Exit For 
 End If 
 Next 
 With oDialog 
 'Initialize the dialog box with the address list representing the Contacts folder 
 .InitialAddressList = oAL 
 .ShowOnlyInitialAddressList = True 
 If .Display Then 
 'Recipients Resolved 
 'Access Recipients using oDialog.Recipients 
 End If 
 End With 
End Sub

另请参阅

命名空间对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。