Hello.
I build a Combo from a table
DataTable dt = lb.clsDB_user_store_gen.get_dt_for_all_user_store();
cboReporter.DataSource = dt;
cboReporter.ValueMember = "uid";
cboReporter.DisplayMember = "displayName";
I put the form in ADD MODE, and wand to say in the first record "Select a Reporter"
It works the first time. When I update the record and clear the form, I call the code below. this then add the text again. (sorry wanted to add small video, but mp4 not supported)
// cboReporter
cboReporter.SelectedText = "";
cboReporter.SelectedText = "Select a Reporter";
// cboAssignee
cboAssignee.SelectedText = "";
cboAssignee.SelectedText = "Select a Assignee";