example for listbox :

Private Sub Command1_Click()
Dim X As Integer
For X = 0 To List1.ListCount - 1
List1.Selected(X) = True
List2.AddItem X
list
Next
End Sub

i have 2 problems :

1. assume i have 255 items in listbox1 and i wanna move 20 items in to listbox2 and move the 20 items again with timer1 until the items of listbox1 is finish, how do i do that ?

2. i wanna change from listbox into listview, the problem is how do i make select the line something like this in listbox =
List1.Selected(X) = True
with listview


VB6 master help me ...


thanks very much...