本帖最后由 狄琛林 于 2012-9-24 19:48 编辑
- for (int i = 0; i < dgv_DaoYouGuanLi.Rows.Count; i++)
- {
- if (dgv_DaoYouGuanLi.Rows[i].Cells["选择"].Selected==true)
- {
- string ZdyId = dgv_DaoYouGuanLi.Rows[i].Cells["ZdyId"].Value.ToString().Trim();
- string sql = B_XT.delDY(ZdyId);
- bool flag = TranClass.RunTran(sql);
- if (flag)
- {
- dgv_DaoYouGuanLi.Rows.RemoveAt(dgv_DaoYouGuanLi.Rows[i].Index);
- }
- else
- {
- MessageBox.Show("删除出现异常,请重新删除!", "错误提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
- }
- }
- }
复制代码 这个不对啊 |