Dim i For i = 0 To ListView1.Items.Count - 1 If ListView1.Items.Items(i).Selected Then ' notice the wacky Items.Items for the SLX ListView control (not a typo ) MsgBox ListView1.Items.Items(i).Caption & " is selected" End If Next
MsgBox ListView1.Items.Items(i).SubItems(0)
I have added items and subitems in the listview control. When i see the control in Saleslogix it shows only the items and not the subitems.
How do i make the subitems visible in the Slx screen.