Dropdown List

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • AlfredNg86
    New Member
    • Sep 2007
    • 4

    Dropdown List

    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.
  • kadghar
    Recognized Expert Top Contributor
    • Apr 2007
    • 1302

    #2
    Originally posted by AlfredNg86
    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.
    im not sure if that exists, but you can add them with a FOR like

    dim i as integer
    for i = 1900 to 2100
    combobox1.addit em(i)
    next

    HTH

    Comment

    Working...