Hi,
CheckComboBox_CostCenter.SelectedValue is the string of all the SelectedItems in the CheckComboBox, separated by ",".
Try this :
CheckComboBox_CostCenter.SelectedValue is the string of all the SelectedItems in the CheckComboBox, separated by ",".
Try this :
string[] words = CheckComboBox_CostCenter.SelectedValue.Split( ',' );
"words" will have an entry for each selection.