private void btnLogIn_Click(object sender, EventArgs e) { if (txtUsername.TextLength <= 0) { MessageBox.Show(grbTenDangNhap.Text + " không được bỏ trống!"); txtUsername.Focus(); } else if (txtPassword.TextLength <= 0) { MessageBox.Show(grbMatKhau.Text + " không được bỏ trống!"); txtPassword.Focus(); } else { string user = txtUsername.Text.Trim(); string pass = txtPassword.Text.Trim(); int kt = login.ktTaiKhoan(user, pass); if (kt == -1) { MessageBox.Show("Tài khoản không tồn tại"); return; } else if (kt == 0) { MessageBox.Show("Mật khẩu không chính xác"); return; } else { DialogResult result; result = MessageBox.Show("Đăng nhập thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); if (result == DialogResult.OK) { QL_NguoiDung nd = login.layND(user); this.Visible = false; frmMain frm = new frmMain(); frm.DangNhapNguoiDung(nd); frm.Show(); } } } }
internal void DangNhapNguoiDung(BLL_DAL.QL_NguoiDung nd) { this.nd = nd; }
internal void DangNhapNguoiDung(QL_NguoiDung nd) { this.nd = nd; thietLapND(); }