I have a few questions regarding the ComboBox in VBA. Each item in the list has a unique key, and I want to use this to set the initial selected item in the combo. How would I do this? Obviously the following line of code won't work, but it ought to give a good idea of what I'm trying to do:

Code:
cboNameList.SelectedKey = "#12"
Something like that, which'd select whichever item has the key '#12'. Is this possible?

Thanks