Fill array from combobox

justice8965

Registered User.
Local time
Today, 12:56
Joined
Aug 25, 2009
Messages
32
Hey guys, probably a simple question but I can't figure out how to step thru a combobox. I just want to fill an array with every item in the combobox. The combobox is named Combo95. Any ideas?
 
See if this gets you on track:

Code:
  Dim intCount      As Integer
  Dim x             As Integer

  intCount = Me.ComboName.ListCount

  For x = 0 To intCount - 1
    Debug.Print Me.ComboName.ItemData(x)
  Next x
 

Users who are viewing this thread

Back
Top Bottom