0

我有一个列名为“order_ID”的 DataGridView(绑定到 SQL 数据库表)。我想要的是在 GridView/SQL 表的该列中添加最后一个填充值,以显示在文本框中。我该怎么做呢?任何帮助将不胜感激。

4

2 回答 2

0

这是你想要达到的目标吗?

int lastRow = yourDataGridView.Rows.Count - 1;
object last_order_ID = yourDataGridView.Rows[lastRow].Cells["order_ID"].Value;
yourTextBox.Text = Convert.ToString(last_order_ID);

希望它可以帮助你。

于 2013-03-17T11:18:12.723 回答
0

下一个 ID:

int lastRow = dataGridView1.Rows.Count-1;
        int last_order_ID = Convert.ToInt32(dataGridView1.Rows[lastRow].Cells["s_id"].Value) + 1;
        txt_num.Text = Convert.ToString(last_order_ID);
于 2016-06-04T11:53:10.067 回答