Click here to Skip to main content
15,909,953 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Please help me...
The thing goes like this......

I want to pass to strings all my checked items in my listview so that I can save it... multiple times as long as how many items are checked in the listview.

Please help me....

Any help would always be appreciated.....
Posted
Updated 16-Apr-10 10:03am
v2

1 solution

To get each checked items text do the following;

VB.NET
For Each checkedItem As ListViewItem In ListView1.CheckedItems
    Debug.WriteLine(checkedItem.Text)
Next
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900