how to open the drop down list

  • Thread starter Thread starter Iliopoulos Dimitirs
  • Start date Start date
I

Iliopoulos Dimitirs

Does anybody knows how you can force a combo box to open
his drop down list from code.i want to write a custom
control and i can not find that

thanks
 
[C#]
this.comboBox1.DroppedDown = true;

[VB.Net]
Me.ComboBox1.DroppedDown = True
 
* "Iliopoulos Dimitirs said:
Does anybody knows how you can force a combo box to open
his drop down list from code.i want to write a custom
control and i can not find that

Set its 'DroppedDown' property to 'True'.
 
Back
Top