private void btnDongy_Click(object sender, EventArgs e) { if (txtMKcu.Text == "" || txtMKmoi.Text == "" || txtMKlai.Text == "") { MessageBox.Show("Yêu cầu nhập đủ thông tin"); ReLoad(); return; } if (txtMKcu.Text != frmDangNhap.MatKhau) { // MessageBox.Show("Mật khẩu cũ không đúng"); MessageBox.Show("Mật khẩu cũ không đúng"); ReLoad(); return; } if (txtMKmoi.Text != txtMKlai.Text) { // MessageBox.Show("Nhập lại mật khẩu không khớp"); MessageBox.Show("Nhập lại mật khẩu không khớp"); ReLoad(); return; } // SqlConnection con = DataProvider.KetNoi(); tk.MaNV = frmDangNhap.MaNV.ToString(); tk.MatKhau = txtMKmoi.Text.ToString(); tk.TaiKhoan = txtTenTK.Text.ToString(); dn.Sua(tk); MessageBox.Show("Đổi mật khẩu thành công ! Khởi động lại chương trình"); this.Close(); Application.Restart(); }
private void btnLuu_Click(object sender, EventArgs e) { if (txtTenDangNhap.Text.Trim() == "") { MessageBox.Show("Chưa chọn nhân viên!", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else if (txtTenNV.Text.Trim() == "") { MessageBox.Show("Tên nhân viên không được bỏ trống!", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else if (cboQuyenHan.Text == "") { MessageBox.Show("Chưa chọn quyền hạn!", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else if (txtMatKhau.Text == "") { MessageBox.Show("Mật khẩu không được bỏ trống!", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { TaiKhoanInfo tk = new TaiKhoanInfo(); tk.TenDangNhap = txtTenDangNhap.Text.Trim(); tk.TenNV = txtTenNV.Text.Trim(); tk.MatKhau = txtMatKhau.Text; tk.Quyen = cboQuyenHan.SelectedIndex; if (isThem) { tkBus.Them(tk); } else { tk.ID = Convert.ToInt32(dGV.CurrentRow.Cells[0].Value.ToString()); tkBus.Sua(tk); } // Tải lại lưới frmTaiKhoan_Load(sender, e); } }