I think this will answer: the field is buried in the semi-general βLinksβ property of type olContact. To check the following code, open a new email, put something in the contacts field, and then run the code:
Sub ShowContactsField() Dim objApp As Outlook.Application Dim ActiveMailItem As Inspector Dim currLink As Link
Set objApp = CreateObject("Outlook.Application") If TypeName(objApp.ActiveWindow) = "Inspector" Then If objApp.ActiveInspector.CurrentItem.Class = olMail Then For Each currLink In objApp.ActiveInspector.CurrentItem.Links If currLink.Type = olContact Then MsgBox currLink.Name End If Next End If End If Set objApp = Nothing End Sub
In general, I agree with Oliver; this is probably not the best place to store what you are looking for, but at least it is revealed in its native form. Check the length of the field, I think it can be limited to 255.
Geoff source share