DropDownList

  • Thread starter Thread starter Guedj54
  • Start date Start date
G

Guedj54

Is it possible to display more than 11 items ( without having to
scroll down ) in an dropdownlist.

Thanks

S
 
S,

cmbMyComboBox.MaxDropDownItems = 8 ' Change this to alter how many rows
are displayed.


Regards - OHM#

Is it possible to display more than 11 items ( without having to
scroll down ) in an dropdownlist.

Thanks

S

Regards - OHM# (e-mail address removed)
 
Hi Armin,

That is a combobox property as far as I can see there are not so much
posibilities for the dropdownlist.
(dropdownlist is almost the same as the combobox on a webform)

Cor
 
* (e-mail address removed) (Guedj54) scripsit:
Is it possible to display more than 11 items ( without having to
scroll down ) in an dropdownlist.

Set the control's 'MaxDropDownItems' property to the numer of items you
want to be shown in the list.
 
Cor said:
That is a combobox property as far as I can see there are not so
much posibilities for the dropdownlist.
(dropdownlist is almost the same as the combobox on a webform)

Set the Dropdownstyle property of the combobox = DropDownList and you have a
DropDownList. :-)
 
Back
Top