Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to get the total of the item prices(which are in the same column in a list view in C#) without selecting the label called lblTotal.The item prices come from the databases and need to get the sum of them within the application itself. Can you please help me and send your ideas.

I have build this using WinForms and I have designed the following code

float lblTotal = 0F;
for (int i = 0; i < orderList.Items.Count; i++) { if (orderList.Items[i].Selected) { lblTotal = float.Parse(orderList.Items[i].SubItems[1].Text); } }

However this is not working for my application. Thank you

share|improve this question
WPF or WinForms? – Daniel Hilgarth Mar 30 '11 at 10:28

2 Answers

It is best to somehow calculate the sum either by moving the calculation to the database (SUM(x)) or your business logic/data source on the client, instead of going through all the hoops of reading it from the UI and conversion/casting.

share|improve this answer

I windows forms c# the following code will total up all the integer values in column 2, change the 2 to whatever column your values are stored in.

int column = 0; column = 2;

int total = 0; total = 0;

ListViewItem item = default(ListViewItem); foreach ( item in this.ListView1.Items) { total += int.Parse((string)item.SubItems(2).Text); }

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.