Exchange Empfängernamen auslesen

J

Jörg Harnisch

Hallo NG,

ich suche schon geraume Zeit in NG's und über Google.
Leider fehlt mir der Ansatz. Ich möchte per vba die Namen der möglichen
Empfänger in einem Exchange Server auslesen und damit ein Dopdown füllen.
Ich hab mit recipients "rumgespielt" aber irgendwie bekomme ich das nicht
hin. Kann mir jemand einen Ansatz liefern?

Danke
Jörg
 
S

SvenC

Hi Jörg,
ich suche schon geraume Zeit in NG's und über Google.

The primary language in this newsgroup is english.
Leider fehlt mir der Ansatz. Ich möchte per vba die Namen der möglichen
Empfänger in einem Exchange Server auslesen und damit ein Dopdown füllen.
Ich hab mit recipients "rumgespielt" aber irgendwie bekomme ich das nicht
hin. Kann mir jemand einen Ansatz liefern?

Dim oGAL As Outlook.AddressList
Set oGAL = Application.GetNameSpace("MAPI").GetGlobalAddressList()

Dim oAE As Outlook.AddressEntry
For Each oAE in oGAL.AddressEntries
Debug.Print oAE.Name & " <" & oAE.Address & ">"
Next
 
J

Jörg Harnisch

Hello and Thanks - it works fine

SvenC said:
Hi Jörg,


The primary language in this newsgroup is english.


Dim oGAL As Outlook.AddressList
Set oGAL = Application.GetNameSpace("MAPI").GetGlobalAddressList()

Dim oAE As Outlook.AddressEntry
For Each oAE in oGAL.AddressEntries
Debug.Print oAE.Name & " <" & oAE.Address & ">"
Next
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top