private void btnDangNhap_Click(object sender, EventArgs e) { if (txtTenTaiKhoan.Text == "") { chckError.SetError(txtTenTaiKhoan, "Nhập tên tài khoản của bạn"); } else if (txtMatKhau.Text == "") { chckError.SetError(txtMatKhau, "Nhập mật khẩu của bạn"); } else if (LogIn(txtTenTaiKhoan.Text, txtMatKhau.Text)) { this.Hide(); Form fr = new frmChinh(); fr.Show(); } else { MessageBox.Show("Đăng Nhập Thất Bại"); } }
private void btnDangNhap_Click(object sender, EventArgs e) { if (txtTenTaiKhoan.Text=="") { chckError.SetError(txtTenTaiKhoan,"Nhập tên tài khoản của bạn"); } else if (txtMatKhau.Text=="") { chckError.SetError(txtMatKhau,"Nhập mật khẩu của bạn"); } else if (LogIn(txtTenTaiKhoan.Text, txtMatKhau.Text)) { this.Hide(); Form fr = new frmChinh(); fr.Show(); } else { MessageBox.Show("Đăng Nhập Thất Bại"); } }