get phone no from addressbook

  • Thread starter Thread starter shubhangi
  • Start date Start date
S

shubhangi

hello
I'm displaying AddressBook in Outlook 2007 (from VSTO Addin)with
App.GetNamespace("MAPI").GetSelectNamesDialog
The user is allowed to select only one entry.I want to get the selected
contact entry's corresponding phone
no. The selected contact entry say A B is shown in address book as
DisplayName
A B(Business Fax)
A B(Home Fax)
A B(Other Fax)

If the user select A B(Home Fax),I need to retrieve Home Fax no.Do I've to
get contact
from AddressENtry.GetContact & then check the selected contact entry from
addressbook with Contact's all types of
phone nos or any other way is there?

Thanks
 
You would use SelectNamesDialog.Recipients.Item(1).AddressEntry.GetContact
to get the contact and from there you read any contact property you want.
 
Thanks for the reply
But I want to retrieve the selected phone number of selected contact from
AddressBook.My addressbook shows 3 entries for same contact-
DisplayName
A B(Business Fax)
A B(Home Fax)
A B(Other Fax)

If user selects entry A B(Home Fax) then I want home fax no of contact A
B.I get the
selected contact with
SelectNamesDialog.Recipients.Item(1).AddressEntry.GetContact
but how would I know that user has selected A B(Business Fax) or A B(Home
Fax) or
A B(Other Fax). ?
 
You'll see something like "Joe Blow (Business Fax)" for Recipient.Name and
something like "Joe Blow@+1 (555) 555-5555" for Recipient.Address if it's a
fax number. You'll have to experiment with the return values with both
Exchange and non-Exchange profiles to see what's being returned in each
case.
 
Thanks,I'll experiment with that.

Ken Slovak - said:
You'll see something like "Joe Blow (Business Fax)" for Recipient.Name and
something like "Joe Blow@+1 (555) 555-5555" for Recipient.Address if it's
a fax number. You'll have to experiment with the return values with both
Exchange and non-Exchange profiles to see what's being returned in each
case.
 
Back
Top