我在vb.net中有一个数据网格视图表。在该表中我有四列。 " TaxAmnt" ," RateOFTax"," AmntOfTax"," AmntAfterTax"。我想要计算如下。
实施例
TaxAmnt RateOfTax AmntOfTax AmntAterTax
10000 4%400 9600
25000 6%1500 23500
我希望总金额在表单上显示为Total 33100
答案 0 :(得分:0)
我实际上对VB知之甚少,但我可以给出伪代码简单的解决方案 我认为您可以像访问
一样访问datagridview中的每一行foreach(datagridviewrow r in yourDataGridViewName.rows){
double x = r.cells[index].value;
// and do your needed calculation here
}
这是一种c#代码,可能与我想的VB代码非常接近。