本文介绍了编辑更新删除datagridview的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何从DataGridView控件中编辑和删除数据
编辑和删除按钮放置在datagriview中cntol
How can edit and delete data from DataGridView control
edit and delete buttons are placed in the datagriview cntol
推荐答案
yourTableAdapter.Update(yourDataSet.TableName);
更新按钮事件
Update Button Event
private void button2_Click(object sender, EventArgs e)
{
try
{
requesterTableAdapter.Update(requesterFileInventoryDataSet.Requester);
MessageBox.Show("Record Updated", "Message", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception ex)
{
MessageBox.Show("Some Error in Update", "Message", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
这篇关于编辑更新删除datagridview的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!