Hello all!

i have a listview popuplated from database.
now....when i write something in text box and push the button i want that it finds me what i wrote in text box.

it should select the item and scroll down to it...so that the item is on top of the listview.

i've already made it for selecting
Code:
            For i = 1 To ListView.ListItems.Count
                If ListView.ListItems(i) = txtfoto(Index) Then
                    ListView.ListItems(i).Selected = True
                    Exit For
                End If
            Next i
but i don't know how to make it so that it would scroll down so that the selected item is on top.

thanx!
Matej