Thanks dbasnett
Code worked great. Modified it as shown below to enable search to resume from last found item.
Code:
1:
For x As Integer = n To tsFileList.Items.Count - 1
If tsFileList.Items(x).ToString.Contains(txtSearch.Text) Then
tsFileList.SelectedIndex = x
found = True
prompt = MsgBox("Search again?", MsgBoxStyle.Question + MsgBoxStyle.YesNo, "")
If prompt = vbNo Then
Exit Sub
ElseIf prompt = vbYes Then
n = x + 1
GoTo 1
End If
Exit For
End If
Next
That really helped me out.
kindest regards
Colin