private void btnLuu_Click(object sender, EventArgs e) { // kiểm tra thông tin không được để trống if (string.IsNullOrEmpty(txtMaLop.Text) || string.IsNullOrEmpty(txtTenLop.Text) || string.IsNullOrEmpty(txtNienKhoa.Text) || string.IsNullOrEmpty(cmbGVCN.Text) || cmbGVCN.SelectedIndex == -1) { MessageBox.Show("Không được để trống thông tin"); return; } Lop lop = new Lop(); lop.MaLop = txtMaLop.Text; lop.TenLop = txtTenLop.Text; lop.NienKhoa = txtNienKhoa.Text; lop.SiSo = (int)numSiSo.Value; lop.GiaoVienChuNhiem = cmbGVCN.SelectedValue.ToString(); if (!lopBus.Update(lop)) { MessageBox.Show("Sửa thông tin lớp không thành công."); return; } btnHuy_Click(sender, e); QuanLyLopGUI_Load(sender, e); }
private void btnLuu_Click(object sender, EventArgs e) { if (status == "Them") { int result = LopHocBUS.Instance.InsertLop(getLop()); if (result == 1) { MessageBox.Show("Thêm lớp thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Thêm lớp không thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { Lop lop = getLop(); lop.maLop = int.Parse(dgvLopHoc.CurrentRow.Cells["maLop"].Value.ToString()); int result = LopHocBUS.Instance.EditLop(lop); if (result == 1) { MessageBox.Show("Sửa lớp thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Sửa lớp không thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error); } } tool_Disenabled(); btnSua.Enabled = true; btnThem.Enabled = true; btnCapNhat.Enabled = true; btnXoa.Enabled = true; LoadDB(); status = ""; }
private void mônHọcToolStripMenuItem_Click(object sender, EventArgs e) { Lop f = new Lop(); f.Show(); }
private void button4_Click(object sender, EventArgs e) { Lop f = new Lop(); f.Show(); }
private void btn_xeplop_Click(object sender, EventArgs e) { Lop l = new Lop(); l.Show(); }
private void thêmLớpToolStripMenuItem_Click(object sender, EventArgs e) { Lop l = new Lop(); l.Show(); }
private void bunifuTileButton4_Click(object sender, EventArgs e) { Lop l = new Lop(); l.ShowDialog(); }