I save the combo1.ListIndex to an array ...

Later I need to recall this value, and set the combobox back to it's previously selected object in the list.

I tried
combo1.ListIndex(MyValue)
combo1.ListIndex = (MyValue)
combo1.ListIndex = MyValue

None work, what am I doing wrong??????

Steve.