Write a Windows application that simulates entering a password. The user enters
ID: 3644908 • Letter: W
Question
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 that the passwords match or that they don't match.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:
Pseudocode:
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
END OF PART A
Part B: Number Guessing Game
Write a Windows application that randomly generates a number from 0 through 100. Prompt the user to guess the number. Let the user know if the guess is too low, too high, or is the correct number. Give the user another chance to guess the number. The user keeps guessing until he or she gets it correct.
Sample output:
I entered a number and pressed the button.
I pressed the button and the box and message are cleared.
I entered a number and pressed the button.
After entering several numbers, I got the following:
The following message is displayed when the guess is right.
Pseudocode:
Form constructor method
Randomly pick a target number between 0 and 100
Evaluate Button Click Event Handler Method
If the guess text box is not blank
Pull the guess from the text box
Add 1 to the number of guesses
If the guess is less than the target
Make the Evaluate button invisible
Change the label message to "Too Low!!"
Make the label message visible
Change the background color of the form to LightSeaGreen
Make the Try Again button visible
Else if the guess is greater than the target
Make the Evaluate button invisible
Change the label message to "Too High!!"
Make the label message visible
Change the background color of the form to SlateBlue
Make the Try Again button visible
Else
Display a message indicating the user guessed correctly and display the number of guesses it took.
End-If
End-If
Try Again Button Click Event handler
Clear the guess text box
Make the label message and Try Again buttons invisible
Make the Evaluate button visible
Explanation / Answer
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. Step 5: Print Screen Shots and Program Capture a screen print of your output [Do a PRINT SCREEN and paste into an MS Word document]. Copy your code and Paste it into the same MS Word document that contains the screen print of your output. Save the Word Document as Lab06A_LastName_FirstInitia
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.