Example #1
0
        private void btnXoa_Click(object sender, EventArgs e)
        {
            int count = dataGridViewX1.SelectedRows.Count;

            if (count != 0)
            {
                if (_objgiangvienbus.DeleteGiangVien(dataGridViewX1.CurrentRow.Cells[0].Value.ToString()))
                {
                    LoadData();
                    resetbox();
                    MessageBox.Show("Xóa thành công!!!");
                }
                else
                {
                    MessageBox.Show("Giảng Viên đang dạy trong lớp khác bạn không thể xóa!!!");
                }
            }
            else
            {
                MessageBox.Show("Bạn chưa chon dòng cần xóa", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }