Hi,
I have a timer control and a listview control on my form. I want to go thorugh all the items in the listview control one by one at an interval of 1 second. how do i do that?

I was able to do that with a listbox control

Private Sub Timer1_Timer()
List1.ListIndex = List1.ListIndex + 1
End Sub

[Edited by wasiq on 08-05-2000 at 08:55 AM]