示例#1
0
 //gán thông tin sinh viên cần sửa
 public static void SetSinhVienSua(Sinhvien svSua)
 {
     ThongTinSinhVienSua = svSua;
 }
        private BangDiem GetInputForm()
        {
            if (txtdiemtoan.Text == "")
            {
                txtdiemtoan.SelectAll();
                txtdiemtoan.Focus();
                throw new Exception("Bạn Chưa Nhập điểm Toán");
            }
            if (txtdiemhoa.Text == "")
            {
                txtdiemhoa.SelectAll();
                txtdiemhoa.Focus();
                throw new Exception("Bạn Chưa Nhập điểm Hóa");
            }
            if (txtdiemly.Text == "")
            {
                txtdiemly.SelectAll();
                txtdiemly.Focus();
                throw new Exception("Bạn Chưa Nhập điểm Lý");
            }
            double toan, ly, hoa;

            #region diemtoan
            if (double.TryParse(txtdiemtoan.Text, out toan) == true)
            {
                if (toan > 10 || toan < 0)
                {
                    txtdiemtoan.SelectAll();
                    txtdiemtoan.Focus();
                    throw new Exception("Điểm không hợp lệ");
                }
            }
            else
            {
                txtdiemtoan.SelectAll();
                txtdiemtoan.Focus();
                throw new Exception("Điểm không hợp lệ");
            }
            #endregion
            #region diemhoa
            if (double.TryParse(txtdiemhoa.Text, out hoa) == true)
            {
                if (hoa > 10 || hoa < 0)
                {
                    txtdiemhoa.SelectAll();
                    txtdiemhoa.Focus();
                    throw new Exception("Điểm không hợp lệ");
                }
            }
            else
            {
                txtdiemhoa.SelectAll();
                txtdiemhoa.Focus();
                throw new Exception("Điểm không hợp lệ");
            }
            #endregion
            #region diemly
            if (double.TryParse(txtdiemly.Text, out ly) == true)
            {
                if (ly > 10 || ly < 0)
                {
                    txtdiemly.SelectAll();
                    txtdiemly.Focus();
                    throw new Exception("Điểm không hợp lệ");
                }
            }
            else
            {
                txtdiemly.SelectAll();
                txtdiemly.Focus();
                throw new Exception("Điểm không hợp lệ");
            }
            #endregion
            Sinhvien iteamSV = (Sinhvien)cbbmasinhvien.SelectedItem;
            LopHoc   iteamLH = (LopHoc)cbbmalop.SelectedItem;
            return(new BangDiem(iteamLH.MaLop, iteamSV.MaSV, toan, ly, hoa));
        }
示例#3
0
 public static void Sua(Sinhvien sinhvien)
 {
     Xoa(sinhvien.MaSV);
     Them(sinhvien);
 }