예제 #1
0
        private void btnDoiMatKhau_Click(object sender, EventArgs e)
        {
            NhanVien_BUS sp = new NhanVien_BUS();

            listnv = sp.LayDanhSach();

            if (txtTenDangNhap.Text.Length > 0 && txtPass.Text.Length > 0)
            {
                for (int i = 0; i < listnv.Count; i++)
                {
                    if (listnv[i].MaNV.ToString() == txtTenDangNhap.Text && listnv[i].Pass.ToString() == txtPass.Text)
                    {
                        lblDangNhap.Visible = lblTenTaiKhoan.Visible = lblMatKhau.Visible = txtTenDangNhap.Visible = txtPass.Visible
                                                                                                                         = btnDangNhap.Visible = btnDoiMatKhau.Visible = btnThoat.Visible = btnDoiMatKhau.Visible = pnlHinhAnh.Visible = pnlThuc.Visible = false;
                        DoiMatKhau frm = new DoiMatKhau(txtTenDangNhap.Text);
                        frm.MdiParent = this;
                        frm.Show();
                        break;
                    }
                    else
                    {
                        if (i == listnv.Count - 1)
                        {
                            MessageBox.Show("Tên đăng nhập hoặc mật khẩu không hợp lê!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                        }
                    }
                }
            }
            else
            {
                MessageBox.Show("Bạn chưa điền tên đăng nhập hoặc mật khẩu!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
        }
예제 #2
0
        private void btnDoiMatKhau_Click(object sender, EventArgs e)
        {
            DoiMatKhau frm = new DoiMatKhau(txtMaNV.Text);

            frm.Show();
            this.Hide();
        }