Recipients City Information

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

Guest

I have a form create to send emails. I am looking at thte "Have Replies Sent
To" field. I have successfully been able to extract the manager's name, but I
am having difficulty getting City information. Can anyone assist?

Thank you,
Ken
 
Sorry that - toss that up to being new to using these newsgroups.

At any rate, here is the code I am using:

Recipients.Add(Recipients(lngRepPtr).AddressEntry.Manager)
Recipients(lngRepPtr).AddressEntry.City

I have tried various properties trying to get the city to not avail. I
appreciate the help.

Thank you,
Ken
 
AddressEntry has no City property. Look at the Object Browser to see what's
available to you in the Outlook object model.

City or other properties shown in the AddressEntry.Details screen can only
be retrieved using CDO, Extended MAPI, Redemption
(www.dimastr.com/redemption) or other lower level API's than the Outlook
object model. See http://www.cdolive.com/cdo10.htm for a list of property
tags for various AddressEntry properties.
 
Ken,

Thank you. That's exactly what I was looking for. I knew that I was missing
something simple. Guess I was too close to the trees to see the forest.

Thanks again,
Ken
 
Back
Top