-Как я получаю сумму totalPrice в моем DataGridView из MySQLкак я всего на сумму от DataGridView vb.net
ProductName Qty. Price totalPrice
2 Pcs. Chickenjoy 5 59 295
2 Pcs. Chickenjoy 1 69 69
2 Pcs. Chickenjoy 1 69 59
TOTAL??
-The сумма должна быть 423 проблема в том, что удвоит сумму
-Вот мой код:
Try
'declaring variable as integer to store the value of the total rows in the datagridview
Dim max As Integer = DataGridView1.Rows.Count - 1
Dim total As String = "Total ----------->"
'getting the values of a specific rows
For Each row As DataGridViewRow In DataGridView1.Rows
'formula for adding the values in the rows
DataGridView1.Rows(max).Cells(4).Value += row.Cells(4).Value
DataGridView1.Rows(max).Cells(3).Value = total
Next
Catch ex As Exception
MsgBox(ex.Message)
End Try
Скриншоты http://goo.gl/Ufj53b
установить точку останова и посмотреть, как выполнить код. вы узнаете много о разнице между тем, что, по вашему мнению, будет делать код и что он на самом деле делает И научиться использовать отладчик – Plutonix