是否可以使用VBA添加/刪除Exchange分發列表的成員?是否可以使用VBA添加/刪除Exchange通訊組列表的成員?
我可以使用以下代碼循環遍歷成員,但似乎無法添加新成員。
Dim olApp As New Outlook.Application 'Start instance of Outlook
Dim olNS As Outlook.NameSpace 'Reference the Outlook namespace and use MAPI
Set olNS = olApp.GetNamespace("MAPI") 'Open the AddressList you want to use
Dim olAddressList As Outlook.AddressList
Set olAddressList = olNS.AddressLists("Global Address List")
olAddressList.AddressEntries.Item(DLList).Members.Item (1).name
感謝鮑勃,這確實給我,我一直在尋找的答案。不幸的是Visual Studio目前還沒有提供給我,所以我必須繼續以手動方式進行。從好的一面來看,我寫了一些SendKeys,它可以提供一定程度的自動化。 –