How to cycle through items in Dropdown - selected or not

S

SK

I want to query the values in a dropdown, whether or not they are selected.
The following code, COLUMNS is the name of a dropdown. This code only
cycles through the selected items in the dropdown. How can I query all the
items in a dropdown, whether they are selected or not?

for pos = 1 to request("COLUMNS").count
.......
next

Thanks,

Sue
 
Top