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'.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top