Hello, I have a combo box on a form. When I run the application, I click the drop down arrow and it does drop but only for a split second, then rolls back up. If I click on the text of the box, I can key down to select anything in it. I have tried:
comboBox1.Enabled = true;
comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
comboBox1.Show();
comboBox1.BringToFront();
comboBox1.Focus();
Both of these return false:
comboBox1.CanSelect
comboBox1.CanFocus
I've been programming for a while but am new to C#.
Thanks for any help.
comboBox1.Enabled = true;
comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
comboBox1.Show();
comboBox1.BringToFront();
comboBox1.Focus();
Both of these return false:
comboBox1.CanSelect
comboBox1.CanFocus
I've been programming for a while but am new to C#.
Thanks for any help.