1

我尝试使用以下代码在单元格中输入值以从数据表中获取值。但我得到一个错误。下面是错误:

DataGridView 中发生以下异常: System.Exception: 0.91 不是 Int32 的有效值。--->

我不知道如何消除这个错误。需要帮忙。

编辑:-

private void DataGrid_CellEnter(object sender, DataGridViewCellEventArgs e)
    {if (DataGrid.CurrentCell.ColumnIndex == 6)
            {
                string getprice = "SELECT " + DataGrid.SelectedRows[0].Cells[3].Value.ToString() + " FROM " +
                    "" + DataGrid.SelectedRows[0].Cells[2].Value.ToString() + "_Mstr " +
                    "WHERE Size1 = '" + DataGrid.SelectedRows[0].Cells[4].Value.ToString() + "'";
                DataTable dt = globalData.q.select(getprice);
                double check;
                if (double.TryParse(dt.Rows[0][0].ToString(), out check))
                {
                    DataGrid.SelectedRows[0].Cells[6].Value = dt.Rows[0][0].ToString().Trim();
                }
            }
        }
4

1 回答 1

0

当您期望一个 int 时,您的 SQL 可能是双精度的。更改数据类型或强制转换(即使用 Convert.ToInt32(xxx) 而不是 double.Parse)

于 2013-02-18T11:49:23.137 回答