就像标题说的那样,我试图从指定的索引返回列表视图中单词的第一个实例。所以这意味着它不会从列表视图的开头搜索它实际上会从我添加到参数中的任何行返回。我似乎无法让它工作,我可以让它与所选项目一起工作,但不能与参数中的变量输入一起工作。
Private Function FindLogic(ByVal LV As ListView, ByVal CIndex As Integer, ByVal SearchFor As String) As Integer
Dim idx As Integer
Dim It = From i In LV.Items Where i.index > LV.Items(CIndex).Index And i.Text = SearchFor
If It.Count > 0 Then
idx = It(0).Index
Else
idx = -1
End If
Return idx
End Function