views:

118

answers:

1

Hi All,

In my window application i created a Combobox. My requirement is like, if i add a long string to combobox and when i will expend that combobox, in the list view that string should come completely.

+6  A: 

Modify the DropDownWidth property of your combobox object to accomodate long strings.

Jojo Sardez
Is there any way to change this width dynamically.
Nikhil
Yes, just change the value at runtime e.g. comboBox1.DropDownWidth = 128;
Gareth S