
ComboBox (Style -> Dropdown List) Change() event
Quote:
>Is it possible to generate a Change() event with a dropdown list box? I
read
>somewhere that the user has to enter text for the Change() event to fire.
So
>how else could I determine when the user changes the contents of a drop
down
>list?
The combo box is a combination of a text box and a list box (hence the
name). The Change event only applies to the text box area of the combo,
which is disabled when the combo is in drop down list mode. You can use the
Click event to track changes in the selected member of the list.
Frank Carr