0

我有一个带有 4 列的简单 dataGridView。我想总结第三列中的值,并在按下按钮时将结果保存到变量中。我试过这样,但我总是得到一个错误说

“指定的转换无效 - 从数字转换时,值必须小于无穷大”。

PS 每个单元格基本上都是一个 DataGridViewTextBoxColumn,这意味着我可以直接输入值。

代码:

private void button2_Click(object sender, EventArgs e)
    {
        Double result = 0;
        foreach (DataGridViewRow row in this.dataGridView1.Rows)
        {
            result += (Double)row.Cells[2].Value;
        }

        this.label13.Text = result .ToString();
    }

我错过了什么?

4

3 回答 3

1

而不是铸造,尝试

result += Convert.ToDouble(row.Cells[2].Value);

带错误检查

if (row.Cells[2].Value != null)
{
    try
    {
        result += Convert.ToDouble(row.Cells[2].Value);
    }
    catch { }
}
于 2013-03-25T18:44:02.447 回答
0
DataTable dt =DataGridView1.DataSource as DataTable;

decimal total;

total=(int)dt.Compute("sum(column_name)","");
于 2014-02-08T14:59:49.743 回答
0
private getColSum()
{
    int sum = 0;
    for (int i = 0; i < dataGridView1.Rows.Count; ++i)
    {
        sum += Convert.ToInt32(dataGridView1.Rows[i].Cells[2].Value);
    }
    return sum;
}
于 2016-06-04T18:27:52.030 回答