In vb.net ,how to sum column values and put it in a textbox of same page
Hi all,
Iam using vb.net and WPF
In a wpf window im showing a datagrid in the load event
while in the load event itself,i need to count grand total
amount from a single datagrid column and add it to a
textbox in same page .
My page looks like this
MY DATAGRID
Item Quantity Total
`````` ```````` `````
Shirt 2 200
Pant 1 500
Tie - -
Belt 2 100
MY TEXTBOX ---> Grand Total amount : - 800
How do i do tat if iam counting from a ((Total Column )) DTG
and adding it and showing it in my (( GRAND TOTAL AMOUNT)) TEXTBOX
Wouldn't it be easier to look at the underlying datasource?
For example, if the DataGrid is bound to a DataSet you can loop that to find the values you are looking for.
Dim totalSum As Integer
For i As Integer = 0 To DataSet.Tables(0).Rows.Count - 1
totalSum += DataSet.Tables(0).Rows(i).Item("Total")
Next
TextBox.Text = totalSum.ToString()