Click here to Skip to main content
15,885,182 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i want to show in a specific column or in a message box that how many rows have yes or no item, and also want to count the total number of rows in a listview, i want that when i insert a record when i insert the next record the form show that previously you have entered so many columns, and when i delete a row it should automatically in order,
Posted
Comments
Atmir 7-Apr-13 15:25pm    
some code do you have?

Button1 - Click
MsgBox("Total Item in List: " & ListView1.Items.Count)
 
Share this answer
 
It seems rather straight forward, assuming you have a list of items you would get the total items count by using .Count on the list. To get the total checked items, you simply loop through all the elements and add 1 to the count of checed elements.
 
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