Results 1 to 11 of 11

Thread: No more ListView.FindItem()?

Threaded View

  1. #1

    Thread Starter
    Addicted Member AlvaroF1's Avatar
    Join Date
    Sep 2002
    Location
    SP - Brazil
    Posts
    200

    Question No more ListView.FindItem()?

    Where's the ListView.FindItem function?
    VB6 code:

    VB Code:
    1. Private Sub Command1_Click()
    2.     Dim FoundItem As ListItem
    3.     Set FoundItem = ListView1.Find("Something", 0)
    4.     If FoundItem Is Nothing Then
    5.         MsgBox "Not found"
    6.     Else
    7.         MsgBox "Found"
    8.     End If
    9. End Sub
    What about VB .NET?


    Thanks.
    Last edited by AlvaroF1; Aug 19th, 2003 at 03:38 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width