Hi,
i'm having a bit of trouble interegating a multicolumn, multiselect listbox
I'm trying to get the bound field and another column from all
the selected items....
Everything is ok, but I can't see how to reference
a row & column (instead of just the row and the bound column being returned)
heres a sample of my code......
(THE lstActiveMember.ItemData(SelectedItem).Column(5) - IS THE WRONG BIT
)
______
For Each SelectedItem In lstActiveMember.ItemsSelected
MsgBox lstActiveMember.ItemData(SelectedItem) & " - " & lstActiveMember.ItemData(SelectedItem).Column(5)
Next SelectedItem
________
can someone shed some light to how I reference column(5) as the code loops round each selected item..
Cheers Homer
i'm having a bit of trouble interegating a multicolumn, multiselect listbox
I'm trying to get the bound field and another column from all
the selected items....
Everything is ok, but I can't see how to reference
a row & column (instead of just the row and the bound column being returned)
heres a sample of my code......
(THE lstActiveMember.ItemData(SelectedItem).Column(5) - IS THE WRONG BIT

______
For Each SelectedItem In lstActiveMember.ItemsSelected
MsgBox lstActiveMember.ItemData(SelectedItem) & " - " & lstActiveMember.ItemData(SelectedItem).Column(5)
Next SelectedItem
________
can someone shed some light to how I reference column(5) as the code loops round each selected item..
Cheers Homer