Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to get checked index number of List item using vb.net
How i can get index number of checked item not selected i have code for get index number of selected item that is
VB
MsgBox(ListView1.FocusedItem.Index)

But i want to index number of checked item not selected.
Posted
Comments
Sandeep Mewara 6-Jan-13 7:54am    
o index number of checked item not selected.
Checked item in listView? Which control you are using? ASP.NET?

1 solution

You can iterate over all the items with foreach and work out which ones are checked from there.
 
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