Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8606729
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T03:09:59+00:00 2026-06-12T03:09:59+00:00

I want to use one command which will contain two textboxes.Text in one If.

  • 0

I want to use one command which will contain two “textboxes.Text” in one “If”. I mean when I did this command :

If (textBox1.Text == ("admin")) + (textBox2.Text == ("admin)) or this If (textBox1.Text == ("admin) , textBox2.Text == admin)) it isn’t right.

The main code is:

  private void Label_Click(object sender, EventArgs e)
     {
         if (textBox2.Text == ("admin")) + (textBox1.Text == ("admin"))
         {
             Label.Text = "right";
         }
         else
         {
             Label.Text = "wrong";
             errorProvider1.SetError(errorprovider, "Wrong Username or Password");
         }

Namely the thing I wanted to do is if one of two textboxes is wrong the label will show that the password or the username is wrong … any ideas ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T03:10:00+00:00Added an answer on June 12, 2026 at 3:10 am

    The syntax for an if statement is:

    if (condition) body
    

    Your current code is:

    if (textBox2.Text == ("admin")) + (textBox1.Text == ("admin"))
    

    … which is treating textBox2.Text == ("admin") as the condition, and then trying to use + (textBox1.Text == ("admin")) as the body, which isn’t valid. The problems are:

    • You’re closing the condition too early
    • You’re using the wrong operator for “and”

    Additionally, you’re putting parentheses around string literals for no obvious reason, reducing readability. So what you really want is:

    if (textBox2.Text == "admin" && textBox1.Text == "admin")
    

    Note that other answers have suggested using || instead of && – that would be an OR condition, which would show a result of “Right” if either of the textboxes had a value of admin. I suspect that’s not what you want.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We are two students who want to use one-class svm for dectection of summary
I have two User Controls already created now I want to use one as
string one = find; combobox1.text = one; I want to use one i.e string
I want to use many bars like this one in my app (i don't
I want to create a live, checkers-like app, which will work like this: There
I want to write a bash script which will use a list of all
I want to use a temp directory that will be unique to this build.
I want to use one program as a shared library for an other program.
I have a few pages and want that they use one style. See in
I want to use NSString from one UIView in another UIView . There are

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.