|
-
Mar 13th, 2000, 06:40 AM
#3
Thread Starter
New Member
Will this work for you?
Dim cnt As Integer
ListView1.Checkboxes = True
For cnt = 1 To ListView1.ListItems.Count
ListView1.ListItems.Item(cnt).Checked = True
Next
That would work just fine if there was a property called Checked, but ListView1.ListItems.Item(cnt).Checked does not exist as a property. The above example is exactly how I would like to use it though.
Any other suggestions?
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
|