Question How to create a new list for my ComboBox dropdown?

joshuayork

Member
Joined
Apr 21, 2008
Messages
8
Programming Experience
Beginner
I want to do something with my combobox.....
How can I programmatically create a new list for my ComboBox dropdown?


thanks...
 
The myComboBox.Items property represents the list of items in the combo box. There are Add, Remove and Clear methods so you can manipulate the items in the combo box. Now if you're using a DataSource for your combo box, you're better to change the data in it instead.

I'm not sure if that's clear or even answers the right question! :eek:
 
Back
Top