Select a contact programmatically

  • Thread starter Thread starter naveed
  • Start date Start date
N

naveed

I'm writing a C# addin, to do some contact management. I'm stumped on
this seemingly trivial task. I want to select (focus) a contact item.
How can I do this? Thanks in advance.
 
I sort of solved the problem by using this crude approach, after
making sure the contacts folder is being displayed:

SendKeys.Send(contact.FileAs);
 
Back
Top