Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DropDwon List

Status
Not open for further replies.

dvannoy

MIS
May 4, 2001
2,765
US

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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top