Select a contact programmatically

N

naveed

I'm stumped on this seemingly trivial task. I want to select (focus) a
contact item.
How can I do this? Thanks in advance.
 
N

naveed

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);
 
Top