Ok, i have a combobox with 3 items. It is is dropdownlist mode. Everytime my app loads it is blank until I select something. I want to set it = to one of the three items by default, but I can't do.
Combo1.index=1
How can I do this?
Printable View
Ok, i have a combobox with 3 items. It is is dropdownlist mode. Everytime my app loads it is blank until I select something. I want to set it = to one of the three items by default, but I can't do.
Combo1.index=1
How can I do this?
The Index property is only valid if the control is part of a control array.Quote:
Originally posted by hipopony66
Combo1.index=1
Try
VB Code:
Combo1.[b]List[/b]Index = 1
:)