|
-
Jan 26th, 2012, 09:40 PM
#1
Thread Starter
Junior Member
listview line selection
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...
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|