Example #1
0
        private void btnXoa_Click(object sender, EventArgs e)
        {
            LopDTO l  = new LopDTO();
            int    id = 0;

            try
            {
                int.TryParse(txtIDLop.Text.ToString(), out id);
                l.IDLop = id;
                LopDAO.XoaLop(l);
                MessageBox.Show("Đã xóa thành công");
                dgvLopHoc.DataSource = LopDAO.LoadDataLop();
            }
            catch
            {
                MessageBox.Show("Có lỗi , làm lại !");
            }
        }