I have the combo box on the form. The Style property is Dropdown List. It is populated by the code bellow:

Do Until rsNext.EOF
frmLogin.cboTeam.AddItem rsNext![full_name]
frmLogin.cboTeam.ItemData(frmLogin.cboTeam.NewIndex) = rsNext![AssociateID]
rsNext.MoveNext
Loop

I need to select some item, let say 'John Smith', pragmatically. Can I do that?
Thanks