Results 1 to 10 of 10

Thread: difficult - list, split, search?? <solved>

Hybrid View

  1. #1

    Thread Starter
    Hyperactive Member Sacofjoea's Avatar
    Join Date
    May 2000
    Location
    Never Never Land
    Posts
    472
    thanks, works very well

    Code:
    For i = 0 To List1.ListCount - 1
    spltme = List1.List(i)
    'strng = what you are searching for...
    Compairme = InStr(spltme, strng)
    'if your string is found...
    If Compairme > 0 Then
        List1.Selected(i) = True
        Exit For
    End If
    Next i
    Last edited by Sacofjoea; Jun 15th, 2002 at 02:59 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