Hi,
Thanks for the details.
The ReadOnly property is used to make the TextBox part ReadOnly. This will not affect the SelectedValue of the Control. However to get the same value in the validated event, you can use the TextBox value. This is the expected behaviour of the Control.
[C#]
void multiColumnBoundCombo_Validated(object sender, EventArgs e)
{
MessageBox.Show(multiColumnBoundCombo.Text.ToString());
}
Please try this and let me know if this helps.
Regards,
Nanda