private void barbtnThem_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            frmToChucThi_TotNghiep frm = new frmToChucThi_TotNghiep(0, IDDM_MonHoc, dtMonHoc);

            frm.ShowDialog();
            grvMonThi_FocusedRowChanged(null, null);
        }
 private void barbtnSua_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
 {
     if (KQHT_ToChucThiID <= 0)
     {
         ThongBao("Bạn chưa chọn đợt thi nào.");
         return;
     }
     if (bool.Parse(grvDotThi.GetDataRow(grvDotThi.FocusedRowHandle)["DongTui"].ToString()))
     {
         ThongBao("Đợt thi của môn này đã đóng túi, bạn không thể sửa.");
         return;
     }
     else
     {
         frmToChucThi_TotNghiep frm = new frmToChucThi_TotNghiep(KQHT_ToChucThiID, IDDM_MonHoc, dtMonHoc);
         frm.ShowDialog();
         grvMonThi_FocusedRowChanged(null, null);
     }
 }