Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. Visual Basic
  4. populating a dropdown list from an arraylist

populating a dropdown list from an arraylist

Scheduled Pinned Locked Moved Visual Basic
data-structures
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    ssbelfast
    wrote on last edited by
    #1

    I'm trying to populate a drop down list from an arraylist. I have an array called idnums thought I could do something like this: Dim C As Integer Dim I As Integer C = idnums.Count For I = 0 To C dlIdNums.Items.Add(idnums.Item(I)) Next thanks

    M 1 Reply Last reply
    0
    • S ssbelfast

      I'm trying to populate a drop down list from an arraylist. I have an array called idnums thought I could do something like this: Dim C As Integer Dim I As Integer C = idnums.Count For I = 0 To C dlIdNums.Items.Add(idnums.Item(I)) Next thanks

      M Offline
      M Offline
      mtone
      wrote on last edited by
      #2

      Are you taking about a ComboBox or ASP.NET Control DropDownList No need for the Loop Just bind the Datasource to the arraylist. dlIdNums.DataSource = idnums dlIdNums.DisplayMember = "name" or DataTextField(ASP) dlIdNums.ValueMember = "value" or DataValueField(ASP) Check Help if I am wrong it is in there.

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups