Hi
If you want to get value from ListBox's item then you can write following statement.
Code Snippet
ListView1.Items.Item(INDEX).Text
If you want to do some task on particular item then you can do following code.
Code Snippet
For
i As Integer = 0 To ListView1.Items.Count - 1
If ListView1.Items.Item(i).Text = "Your Condition" Then
Application.DoEvents()
End If
Next
Here you can replace your code at Application.DoEvents.
And after finishing your task loop will continue from next element of ListBox1.
If your requirement is different, or if i don't underestand your que properly, or if i am wrongthen let me know.
Thank You.
Best Regards,
Utakrsh Gajjar