enumerating combobox's list

  • Thread starter Thread starter cinnie
  • Start date Start date
C

cinnie

hello
What code can I use for the code below. I'm having trouble getting it
right.

For Each row in cboTest.column(1)
...
Next
 
cinnie said:
hello
What code can I use for the code below. I'm having trouble getting it
right.

For Each row in cboTest.column(1)
...
Next



Dim i As Long

For i = 0 To cboTest.ListCount - 1
Debug.Print cboTest.ItemData(i), cboTest.Column(1, i)
Next i
 
Back
Top