How would I insert more text into the combo, that way when i click the \/ button, it'll have more choices instead of just the header
Printable View
How would I insert more text into the combo, that way when i click the \/ button, it'll have more choices instead of just the header
VB Code:
Combo1.AddItem "New Item"
Here is a simple example
Combo1.AddItem "Canada"
Combo1.AddItem "USA"
Combo1.AddItem "Irak"
If you don't want to add the items in code then use the List property on the Combobox property page.