Since a combo box can only have one item selected, you can simply check the
value of the combo box. If you need to retrieve something other than the
bound field, incorporte the Combo's Column property in the retrieval.
If you were working with a multi-select List box, you'd have to write a
function that would loop through the ItemsSelected collection and make
additions to an array or concatenated string.
HTH,