I binded data to a combobox using a dataset.
companycb.DisplayMember = "company";
companycb.ValueMember = "visitorVisitID";
companycb.DataSource = ds.Tables["tblVisitorVisit"];
I need to remove the duplicate values from the combobox. Is there any other way instead of doing it using an SQL Distinct query?