private void btnEdit_Click_1(object sender, EventArgs e) { using (frmAddEditStudent fmAE = new frmAddEditStudent()) { int selectIndex = dgvHocSinh.CurrentRow.Index; if (selectIndex < 0) { MessageBox.Show("Chọn bản ghi cần sửa!"); } else { string id = dgvHocSinh[0, selectIndex].Value.ToString(); fmAE.Id = id; if (fmAE.ShowDialog() == DialogResult.OK) { HocSinh hs = fmAE.getHocSinh(); if (bsHs.UpdateHocSinh(hs)) { MessageBox.Show("Sửa thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Sửa thất bại", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { return; } } } }
private void btnEdit_Click(object sender, EventArgs e) { using (frmAddEditStudent fmAE = new frmAddEditStudent()) { int selectIndex = dgvHocSinh.SelectedRows[0].Index; string id = dgvHocSinh[0, selectIndex].Value.ToString(); fmAE.Id = id; if (fmAE.ShowDialog() == DialogResult.OK) { HocSinh gv = fmAE.getHocSinh(); if (bsHs.UpdateHocSinh(gv)) { MessageBox.Show("Sửa thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Sửa thất bại", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { return; } } }
private void btnAdd_Click(object sender, EventArgs e) { using (frmAddEditStudent fmAE = new frmAddEditStudent()) { fmAE.Id = null; if (fmAE.ShowDialog() == DialogResult.OK) { HocSinh hs = fmAE.getHocSinh(); if (bsHs.InsertHocSinh(hs)) { MessageBox.Show("Thêm thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Thêm thất bại", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { return; } } }