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
 
Guedj54 said:
Is it possible to display more than 11 items ( without having to
scroll down ) in an dropdownlist.

Set the MaxDropDownItems property.
 
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. :-)
 

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