Is there anyway to have the notes client expand email address' automatically?

Hitting F9 on after entering a name in the address field of a new memo will replace the name with the email address. Is there a way to have this done automatiall?

Subject: Is there anyway to have the notes client expand email address’ automatically?

You can put in your SendTo field’s Exiting method the following script:

Sub Exiting(Source As Field)

Dim workspace As New NotesUIWorkspace

Set uidoc=workspace.CurrentDocument

uidoc.Refresh

End Sub

Subject: Is there anyway to have the notes client expand email address’ automatically?