Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim objOutlook As Outlook.Application
Dim myNSpace As Outlook.NameSpace
Dim myAdList As Outlook.AddressList
Dim myAdEntry As Outlook.AddressEntry
Dim myMberEntry As Object
Dim YourAddressList as String
Dim YourEntry as String
Set objOutlook = New Outlook.Application
Set myNSpace = objOutlook.GetNamespace("MAPI")
Set myAdList = myNSpace.AddressLists(YourAddressList)
Set myAdEntry = myAdList.AddressEntries(YourEntry)
For Each myMberEntry In myAdEntry.Members
do something
Next
Set myAdEntry = Nothing
Set myAdList = Nothing
Set myNSpace = Nothing
objOutlook.Quit
Set objOutlook = Nothing