how to set the domainupdown.Items with data from selected column datagridview?
as far as i know, first get the data from datagridview:
string[] myData = null;
for (int i=0; i<datagridview.rows.count; i++)
{
myData[i] = convert.tostring(datagridview.rows[i].cells[0].value.tostring();
}
how to set the domainupdown.Items = myData?