Combo Box - Initialize to first Item in list

  • Thread starter Thread starter Dorian Chalom
  • Start date Start date
D

Dorian Chalom

How do I initialize the item in a combo box to be the first item in the
list?

The ComboBox's rowsource is a query.
 
Dorian said:
How do I initialize the item in a combo box to be the first item in the
list?

Try setting the combo box's Default Value property to the
expression:

=combobox.ItemData(0)
 
Back
Top