2014-06-21 110 views
0

我在vb.net中有一個數據網格視圖表。在那個表中我有四列。 「TaxAmnt」,「RateOFTax」,「AmntOfTax」,「AmntAfterTax」。我希望計算如下。如何在vb datatgridview中進行計算

TaxAmnt RateOfTax AmntOfTax AmntAterTax

10000 4%400 9600

25000 6%1500 23500

我想的是總量爲顯示形式,如總計33100上

回答

0

我其實不太瞭解VB,但我可以給一個僞代碼簡單的解決方案。
我想你是能夠訪問到每行中您的datagridview就像做

foreach(datagridviewrow r in yourDataGridViewName.rows){ 
     double x = r.cells[index].value; 
     // and do your needed calculation here 
} 

這是怎麼樣的C#代碼這可能是非常接近VB代碼,我想。