How to show the dropdown when the ComboBox (ComboBoxAdv) is in ReadOnly in WinForms?
Dropdown settings
You can display dropdown of ComboBoxAdv when its textpart is ReadOnly by setting ReadOnly for textpart of ComboBoxAdv as follows
C#
this.comboBoxAdv1.TextBox.ReadOnly = true;
VB
Me.comboBoxAdv1.TextBox.ReadOnly = TRUE