程序代码: Dim i As Integer
For i = List1.ListIndex + 1 To List1.ListCount - 1
If InStr(List1.List(i), a) > 0 Then 'a是要查找的字符,比如a="拉伸"
List1.Selected(i) = True
Exit For
End If
Next
2020-02-24 16:18
程序代码: Dim i As Integer
For i = List1.ListIndex + 1 To List1.ListCount - 1
If InStr(List1.List(i), a) > 0 Then 'a是要查找的字符,比如a="拉伸"
List1.Selected(i) = True
Exit For
End If
Next

2020-02-25 10:07