Select a contact programmatically

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

Guest

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:

//[C# code]
SendKeys.Send(contact.FileAs);
 
Back
Top