Maybe something like this:
int iSum = 0;
foreach (ListViewItem o in this.lstLinks.Items) {
iSum = iSum + Convert.ToInt16(o.SubItems(3).Text);
}
Here I assume the value field is in the third subitems.
Best regards Arild Røksund, Norwegian developer (SQL & .net), Omega AS (please Vote as helpful if helpful)