private void btnTK_Click(object sender, EventArgs e) { nvbs = new GiaoVienBS(); string strSearch = txtTimKiem.Text; dataGridView1.DataSource = nvbs.TimKiemGV(strSearch).Tables[0]; }
private void btn_dn_Click(object sender, EventArgs e) { if (radioButton_thisinh.Checked == true) { if (textBox_dn.Text == "" || textBox_pa.Text == "") { MessageBox.Show("Nhập đầy đủ thông tin của thí sinh"); textBox_dn.Focus(); } else { tsbs = new ThiSinhBS(); DataTable dt = new DataTable(); dt = tsbs.GetThiSinhDN(textBox_dn.Text, textBox_pa.Text).Tables[0]; if (dt.Rows.Count > 0) { ThongtinTS ts = new ThongtinTS(dt); ts.GetStringFromAnotherForm += delegate { return(textBox_pa.Text); }; ts.Show(); this.Hide(); } else { MessageBox.Show("Tên đăng nhập hoặc mật khẩu không tồn tại"); } } } else { if (textBox_dn.Text == "" || textBox_pa.Text == "") { MessageBox.Show("Nhập đầy đủ thông tin của người quản lý"); textBox_dn.Focus(); } else { nvbs = new GiaoVienBS(); DataTable dt = new DataTable(); dt = nvbs.DangNhapNV(textBox_dn.Text, textBox_pa.Text).Tables[0]; if (dt.Rows.Count > 0) { DataRow dr; dr = dt.Rows[0]; Form_Dieuhanh d = new Form_Dieuhanh(); d.GetStringFromAnotherFormdn += delegate { return(textBox_pa.Text); }; d.GetStringFromAnotherFormdn2 += delegate { return(dr[10].ToString()); }; MySession.strUserName = dr["MaNguoiDung"].ToString(); d.Show(); this.Hide(); } else { MessageBox.Show("Tên đăng nhập hoặc mật khẩu không đúng"); } } } }
//public void updateGiaovien(Table_GiaoVien gvien) //{ // Table_GiaoVien d = gv.kiemTraTonTai(gvien); // if (d != null) // { // int result_update = gv.updateGV(d); // if (result_update == 1) // { // MessageBox.Show("Cập nhật thành công"); // } // else // MessageBox.Show("Cập nhật thất bại"); // } // else // { // DialogResult rs = MessageBox.Show("Chưa tồn giáo viên này", "Thông báo", MessageBoxButtons.OKCancel, MessageBoxIcon.Question); // } // loadDgvGiaovien(); //} private void btnChinhsua_Click(object sender, EventArgs e) { try { GiaoVienBS gvBS = new GiaoVienBS(); gvBS.UpdateGiaoVien(txtTenGV.Text, comboBox_cv.Text, textBox_dc.Text, textBox_dt.Text, textBox_ns.Text, textBoxma.Text); MessageBox.Show("Cập nhật thành công"); loadDgvGiaovien(); } catch (Exception ex) { MessageBox.Show("Loi:" + ex.Message); } }