Where's the ListView.FindItem function?
VB6 code:
What about VB .NET?VB Code:
Private Sub Command1_Click() Dim FoundItem As ListItem Set FoundItem = ListView1.Find("Something", 0) If FoundItem Is Nothing Then MsgBox "Not found" Else MsgBox "Found" End If End Sub
Thanks.




Reply With Quote