I have done the following which works find apart from it will not select my nested item, could you please explain what I have done wrong? I am using virtual grid.
findComm(Me.lstResults.Selected.Item(0).ToString)
    Private Sub findComm(ByVal ID As String)
        Dim items As NodeCollection = Me.lstReviewComm.Rows.Items
        Dim item As NodeBase
        For Each item In items
            If item.Item(0).ToString = ID Then
                Me.lstReviewComm.Selected = item
                Exit Sub
            End If
        Next
    End Sub
Thanks in advance
Simon