26-08-13, 10:11 PM
لا توجد أى رسائل ولكن كافة البيانات الموجودة فى الصف الأخير فقط هى التى تختفى
[HTML]Dim z As Integer = DataGridView2.RowCount - 1
DataGridView2.Rows(z).Cells("TotalPrice").Value = Tot9ts.ToString("f2")[/HTML]
كود :
Dim Tot9ts As Decimal
Dim w As Integer
For w = 0 To DataGridView2.RowCount - 2
Dim cel9ts As DataGridViewTextBoxCell = DataGridView2.Rows(w).Cells("TotalPrice")
If IsNumeric(cel9ts.Value) = True Then
Tot9ts += cel9ts.Value
End If
NextDataGridView2.Rows(z).Cells("TotalPrice").Value = Tot9ts.ToString("f2")[/HTML]
