Hi
I am trying to gather the values of a ListView control into variables on the selection_changed event but am getting an error. The code is as follows:
Dim s1 As Object
Dim s2 As Object
Dim s3 As Object
Dim SelInd As Object = Me.lsbAnchor.SelectedIndic
es(0)
s1 = Me.lsbAnchor.Items(SelInd)
.SubItems(
0).Text
s2 = Me.lsbAnchor.Items(SelInd)
.SubItems(
1).Text
s3 = Me.lsbAnchor.Items(SelInd)
.SubItems(
2).Text
Start Free Trial