C# & .Net 2.0 question (WinForms)
I have set of items in ComboBox and non of them selected. I would like to show a string on combo \"Pl
private void comboBox1_TextChanged(object sender, EventArgs e)
{
if (comboBox1.Text == "")
comboBox1.Text = "Select one of the answers";
}
should do the trick at startup this line is present, when selected an item on combobox, this items text will appear. when deleling the text this text will appear again