Contacts -> Tasks CDO

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

Guest

I am writing a CDO app in Access. After I have all of my Contacts and I am ready to go through the tasks, how do I determine which tasks belong to a particular contact, if at all?
 
The members of the Links collection is what you are looking for.




DanG said:
I am writing a CDO app in Access. After I have all of my Contacts
and I am ready to go through the tasks, how do I determine which tasks
belong to a particular contact, if at all?
 
Ken,

Is the EntryID that I find in the Links collection basically the unique identifier for the current task I am on?

Thanks,

Dan
 
The Links collection is a collection of Contact items. The EntryID's
are for the contacts. In fact, Links.Item(x) is a ContactItem. So
Links in a TaskItem would refer to the contacts that are linked to
that task and can be viewed in the UI in the Activities tab of those
Contacts.




DanG said:
Ken,

Is the EntryID that I find in the Links collection basically the
unique identifier for the current task I am on?
 
Ken

Good enough... looks like I am beginning to get the concept
Not like joining 2 tables together

Thanks for the help

Da
 
Back
Top