hey people!!
how are you all? I need some help here:
1) is there any way easyer to do this:
DataSet DS = new DataSet();
foreach (DataTable t in DS.Tables)
foreach (DataRow r in t.Rows)
foreach (DataColumn c in t.Columns)
CBx.Items.Add(r[c]);
2) how can you order a combobox to focos on a certain Item that is already there? that is, to get the combobox to show a certain item (by code alone)
please help me!!
Gabs