private void btnLuu_Click(object sender, EventArgs e) { if (Them) { try { qlMH.Them_lop_hoc_phan((string)cbbMaMon.SelectedValue, txtPhongHoc.Text, Int32.Parse(cbbThu.Text), Int32.Parse(cbbTietBatDau.Text), Int32.Parse(cbbTietKetThuc.Text), (string)cbbMaGV.SelectedValue, Int32.Parse(txtSoLuong.Text), DateTime.Parse(dtpNgayBatDau.Text)); MessageBox.Show("Thêm thành công !!!"); } catch { MessageBox.Show("Không thêm được !!!"); } } else { try { qlMH.Sua_lop_hoc_phan(txtMaLop.Text, (string)cbbMaMon.SelectedValue, txtPhongHoc.Text, Int32.Parse(cbbThu.Text), Int32.Parse(cbbTietBatDau.Text), Int32.Parse(cbbTietKetThuc.Text), (string)cbbMaGV.SelectedValue, Int32.Parse(txtSoLuong.Text), DateTime.Parse(dtpNgayBatDau.Text)); MessageBox.Show("Sửa thành công !!!"); } catch { MessageBox.Show("Không sửa được !!!"); } } Them = false; LoadData(); }