Somewhere i have read that if i use this code it automatically distinct all replied rows
but when i use it i doesn't do that.
What's problem?
thanx in advance
private void comboBox1_Click(object sender, EventArgs e)
{
PersonTableCollection persontable = new PersonTableCollection();
comboBox1.DataSource = persontable;
comboBox1.DisplayMember = "Title";
persontable.GetMulti(null);
}