抱歉新手在delete按鈕上遇到很大的困難不知道怎麼處理
請問再刪除master和DetailsDataGridView出現了這個視窗,我確認資料有繫結上,還是說code有錯,想請教一下前輩們,我把相關的通西貼上
以下是刪除鈕的code的部分
private void toolStripButton1_Click(object sender, EventArgs e)
{
DialogResult result = MessageBox.Show("確定要刪除嗎?", "刪除", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
string str報名編號;
TransactionScope tsMyTransactionScope = new TransactionScope();
using (tsMyTransactionScope)
{
try
{
foreach (DataRow dr in 才藝班DataSet.課程報名單Details.Rows)
{
str報名編號 = Convert.ToString(dr["報名編號", DataRowVersion.Original]);
string aa = 報名編號TextBox.Text;
if (aa == str報名編號)
{
課程報名單DetailsBindingSource.RemoveCurrent();
}
}
課程報名單MasterBindingSource.RemoveCurrent();
this.課程報名單DetailsTableAdapter.Update(
this.才藝班DataSet.課程報名單Details);
this.課程報名單MasterTableAdapter.Update(this.才藝班DataSet.課程報名單Master);
tsMyTransactionScope.Complete();
}
catch (Exception err)
{
MessageBox.Show(err.Message);
}
finally
{
}
MessageBox.Show("刪除成功!", "訊息", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
然後DataSet的設定
然後是資料繫結