You will code, build, and execute two programs requiring GUI in c#. The first pr
ID: 3626709 • Letter: Y
Question
You will code, build, and execute two programs requiring GUI in c#. The first program will ask the user to input a password then reenter it for verification.
Pssword Program
Write a Windows application that simulates entering a password. The user enters a password and clicks Next. Then, the user types the password again and clicks Continue. The program will display a Message Box that displays either the passwords are equal or that they are not equal.
Sample Output:
I type in Bob in the password field and click Next.
I type in Bob in the second password field and click Continue.
Message displayed if the passwords match.
Message displayed if the passwords are different.
Step 2: Processing Logic
Using the pseudocode below, write the code that will meet the requirements:
Next Button Event Handler Method
If the first password textbox is not blank
Make visible the second password textbox, the Done button, and the labels
Else
Put "You must enter a password" in the label
End-If
Done Button Event Handler Method
If the first password text box is not empty
If the first password text box equals the second password textbox
Display the message "Passwords are the same"
Else
Display the message "Passwords are different"
End-If
Else
Display the message "You must enter a password"
End-If
Step 3: Create a new project
Create a new project and name it LAB6A.
Write your code using the Processing Logic in Part A Step 2. Make sure you save your program.
Step 4: Compile and Execute
Compile your program. Eliminate all syntax errors.
Build your program and verify the results of the program. Make corrections to the program logic if necessary until the results of the program execution are what you expect.
Explanation / Answer
#include #include main() { char a[100], b[100]; printf("Enter your password "); gets(a); printf("Enter your password again "); gets(b); if( strcmp(a,b) == 0 ) printf("passwords match. "); else printf("passwords are different. "); return 0; }Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.