I am trying to populate 10 DropDown list's on one form..The below code works for the first one but I get an error saying
"No accessible overloaded 'ListItemCollection.Add' can be called without a narrowing conversion."
While MyReader.Read
cboProduct1.Items.Add(MyReader("Componet")
cboProduct2.Items.Add(MyReader("Componet")
End While
I only listed 2 here but i need to populate 10..
Any help would be appreciated