hi
I have this code :
public static List<string> MyTable = new List<string>();
dsView = new DataSet();
adp = new SqlCeDataAdapter("SELECT DISTINCT Fname FROM MEN", Conn);
adp.Fill(dsView, "MEN");
adp.Dispose();
foreach (DataRow R in dsView.Tables["MEN"].Rows)
GG.Add( R["Fname"].ToString());
how to Bind it to ComboBox ?
thank's in advance