I want to create three dropdown lists for dd/mm/yyyy. Is it possible to auto-generate members of the dropdown list? I would'nt want to add each year from 1900 to 2100 as members. Using VB to code a webform in VWD.
Dropdown List
Collapse
X
-
Tags: None
-
Originally posted by AlfredNg86I want to create three dropdown lists for dd/mm/yyyy. Is it possible to auto-generate members of the dropdown list? I would'nt want to add each year from 1900 to 2100 as members. Using VB to code a webform in VWD.
dim i as integer
for i = 1900 to 2100
combobox1.addit em(i)
next
HTH
Comment