>> when 'm calling 'chooser' -> EmailAddressChooserTask with the event.
At that instance, i have to SELECT specific person. That what i want to SKIP,
How i bind all CONTACTS in my list, except a single contact what i choose [No idea :/]
CODE:
public partial class MainPage : PhoneApplicationPage
{
// Constructor
public MainPage()
{
InitializeComponent();
EmailAddressChooserTask emailContacts = new EmailAddressChooserTask();
emailContacts.Completed+=new EventHandler
emailContacts.Show();
}
void emailContacts_Completed(object sender, EmailResult e)
{
// List
// List
textBox1.Text = e.DisplayName.ToString();
textBox2.Text = e.Email.ToString();
}
}

Replies
Know the answer? Post it — somebody with the same question will find it here.