I have a multi-slect listbox with 4 columns. The first column is the userid and is the bound column. The next column is the username and I'm trying to select it with the following code:
For Each item In lbo.ItemsSelected
strReportTitle = strReportTitle & " - " & lbo.ItemData(item)
Next
How do I change the code to select the username column?
Thanks, Kopy
For Each item In lbo.ItemsSelected
strReportTitle = strReportTitle & " - " & lbo.ItemData(item)
Next
How do I change the code to select the username column?
Thanks, Kopy