private void btnThemHS_Click(object sender, EventArgs e) { if (txtMaHS.Text != "" && txtHoHS.Text != "" && txtTenHS.Text != "" && txtHTBo.Text != "" && txtHTMe.Text != "" && txtDC.Text != "" && txtSDT.Text != "") { HocSinh hs = new HocSinh(txtMaHS.Text, txtHoHS.Text, txtTenHS.Text, dtpNS.Value, cbbGT.Text, txtDC.Text, txtSDT.Text, txtHTBo.Text, txtNNBo.Text, txtHTMe.Text, txtNNMe.Text); if (chs.themHocSinh(hs)) { MessageBox.Show("thêm thành công! Vui lòng lựa chọn lớp học cho học sinh vừa thêm"); frmThemHSDSLop f = new frmThemHSDSLop(); this.Hide(); //f.ShowDialog(); //f.Close(); f.Show(); } else { MessageBox.Show("thêm không thành công"); } } else { MessageBox.Show("xin vui lòng nhập đủ thông tin"); } }
private void cbbSapXepHSLop_SelectedIndexChanged(object sender, EventArgs e) { if (cbbSapXepHSLop.Text == "Thêm học sinh vào một lớp bất kỳ") { frmThemHSDSLop f = new frmThemHSDSLop(); //this.Hide(); //f.Show(); f.Show(); } else if (cbbSapXepHSLop.Text == "Thay đổi thông tin của học sinh trong lớp") { frmSuaDSHSLop f = new frmSuaDSHSLop(); f.Show(); } else if (cbbSapXepHSLop.Text == "Xóa học sinh trong lớp") { frmXoaHSDSLop f = new frmXoaHSDSLop(); f.Show(); } else { MessageBox.Show("Lỗi"); } }