using combobox?

mrtutorial08

Member
Joined
Sep 4, 2008
Messages
20
Programming Experience
1-3
Do you know How I can like Put options into a combo box...I never worked with combo boxes...=/...How can I Insert Options in a combo box so the user a has a list to select stuff from? Also How could I code them? I never worked with them...Sorry..
 
To add items in the combobox during design-time just see the Collections property.

To add a new item in the combobox through code, enter cbo1.items.additem("item")

To remove an item, cbo1.items.remove("item")
 
Back
Top