They work fine here eg
Public Sub InsertNameFromOutlook()
Dim strCode As String
Dim strAddress As String
'*********************
'Set up the formatting codes in strCode
strCode = "<PR_POSTAL_CODE>"
'*********************
'Let the user choose the name in Outlook
strAddress = Application.GetAddress("", strCode, _
False, 1, , , True, True)
'Insert the name at the current insertion point
If ActiveDocument.ProtectionType <> wdNoProtection Then
bProtected = True
ActiveDocument.Unprotect
ActiveDocument.FormFields("NameOfFormfield").Result = _
strAddress
Else
Selection.TypeText strAddress
End If
End Sub

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Today I've learnt about GetAddress, thanks to kind people in this
> discussion group!
[quoted text clipped - 9 lines]
>
> /BosseH