M
Michel
Hi,
I've a listBox with 2 columns with the first set as hidden.
How can I consult the 2 columns of all the element of the listbox.
I thought about somethings like this
For i = 0 To listBox.ListCount - 1
Debug.Print listBox.ItemData(i).Column(0)
Debug.Print listBox.ItemData(i).Column(1)
Next i
but there is not Column for the ItemData. Is there a solution?
Thanks
Michel
I've a listBox with 2 columns with the first set as hidden.
How can I consult the 2 columns of all the element of the listbox.
I thought about somethings like this
For i = 0 To listBox.ListCount - 1
Debug.Print listBox.ItemData(i).Column(0)
Debug.Print listBox.ItemData(i).Column(1)
Next i
but there is not Column for the ItemData. Is there a solution?
Thanks
Michel