You need a variable declared WithEvents in the module head to receive the
commandbar button click. You get that reference via
Application.ActiveExplorer.Commandbars.FindControl(,354).
In the button click event procedure, if you hit the button from the opened
item then set a MailItem variable to Application.ActiveInspector.CurrentItem
else to Application.ActiveExplorer.Selection(1).
That MailItem has a SenderEMailAddress property. Search that address within
your Contacts folder to get its FirstName, LastName and Title.

Signature
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
Organize eMails:
<http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6>
Am Sun, 29 Jul 2007 19:42:04 -0700 schrieb Stephensaw:
> Hi,
>
[quoted text clipped - 6 lines]
>
> Thanks.