Ich hoffe der Teil hilft:
If Application.ActiveExplorer.Selection.Count \> 0 Then
If Application.ActiveExplorer.Selection.Item(1).Class = olContact Then
Set olItem = Application.ActiveExplorer.Selection.Item(1)
txtAdressDaten.Text = olItem.FullName & vbCrLf
If olItem.CompanyName "" Then txtAdressDaten.Text = txtAdressDaten.Text & olItem.CompanyName & vbCrLf & vbCrLf
txtAdressDaten.Text = txtAdressDaten.Text & olItem.BusinessAddress & vbCrLf
If olItem.BusinessTelephoneNumber "" Then txtAdressDaten.Text = txtAdressDaten.Text & vbCrLf & "Tel: " & olItem.BusinessTelephoneNumber
If olItem.MobileTelephoneNumber "" Then txtAdressDaten.Text = txtAdressDaten.Text & vbCrLf & "Mobil: " & olItem.MobileTelephoneNumber
If olItem.BusinessFaxNumber "" Then txtAdressDaten.Text = txtAdressDaten.Text & vbCrLf & "Fax: " & olItem.BusinessFaxNumber
Else
MsgBox "Es wurde kein Kontakt ausgewählt. Bitte wählen Sie einen Kontakt aus.", , "Fehler..."
End
End If
Else
MsgBox "Es sind keine Kontakte vorhanden.", , "Fehler..."
End
End If
Ralph