binding an arrrayList to a combo box

BlueOysterCult

Well-known member
Joined
Oct 3, 2003
Messages
84
Hello All
I am trying to bind my arraylist to a combo box - I guess fill it in with the data... I do know that the file is in the array (it a csv file that was read and inputted etc.) I can see it in the output window. But I cant get it to the combo box
Any ideas
this is what I have so far

Code:
Dim myCustForm As New frmCarList
        myCustForm.cmbCarList.DataSource = CarArrayList
        myCustForm.ShowDialog()

Rob
 
Back
Top