Full Name Property For AppointmentItem in 2003 ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

In Outlook 2002, I recall that I manage to use

l_appointmentItem.Links.Item(1).item.FullName to get the Full Name of a contact (inclusive of the Title eg: Dr.)

However in Outlook 2003, I noticed that this property is no longer available ..
Is there any equivalent ?

I have tried using
l_appointmentItem.Links.Item(1).Name -> this only gets me the name but without the Title ...

Any idea on how I can get all from the appointmentItem .. ??

Regards
Kwan
 
FullName is definitely still a property on the ContactItem object. What
happens when you try to use it? You should also be able to use the Subject
property.

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers



Thean Keong said:
Hi,

In Outlook 2002, I recall that I manage to use

l_appointmentItem.Links.Item(1).item.FullName to get the Full Name of a
contact (inclusive of the Title eg: Dr.)
 
Back
Top