Just something basic. How do I get a combobox to have text already displayed when the form loads?

The comboboxes are created at run-time and have options loaded into them from a database

I've tried:
cmbQuestions(x).Text = qID(x)
cmbQuestions(x).SelectedText = qID(x)
cmbQuestions(x).SelectedItem = qID(x)

everytime the form loads the comboboxes have the options in them but nothing default to see (default - what i made earlier from another screen)