i need some help
-
how can i subtract and multiply cells in datagridview in vs 2005 or even in the database...i want for example to add all the cells together and get the result...in short how to make math operations in ado.net applications using DatagridView or something...i hope my question is clear !!!
-
how can i subtract and multiply cells in datagridview in vs 2005 or even in the database...i want for example to add all the cells together and get the result...in short how to make math operations in ado.net applications using DatagridView or something...i hope my question is clear !!!
-
how can i subtract and multiply cells in datagridview in vs 2005 or even in the database...i want for example to add all the cells together and get the result...in short how to make math operations in ado.net applications using DatagridView or something...i hope my question is clear !!!
When I did that I did something like total += the cell value. I did that from RowAdded or RowDataBound. I can't remember the exact name, but every time a row is added the total would be increased by that cell's amount. Then I output that final value in the datagrid footer.