When the form loads values are loaded into a combobox and a default value is selected from the list.

cbox.seltext = "Illness Self"

But when loading the default value into the combobox, the combobox's ListIndex property doesn't get updated to reflect "Illness Self" as being selected. Even though "Illness Self" is set by the SelText property the ListIndex still shows as -1 not 14 which would be the ListIndex for "Illness Self".

How can I update the ListIndex property when setting a default value for the combobox? It's got to be something easy.