CIS 170 Week 6 iLab 6 of 7 Menu-Driven Applications (GUI)

$ 15

CIS 170 Week 6 iLab 6 of 7 Menu-Driven Applications (GUI)

Scenario/Summary
You will code, build, and execute two programs requiring GUI. The first program will ask the user to input a password and then reenter it for verification. The second program is a number guessing game that generates a random number and asks the user to input his or her guess.

Part A: Password Program
Requirements
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:

Tips
Best practice: First make sure to read through this week’s lecture and try it yourself! Then, you’ll be in good shape for this exercise.
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
Requirements
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.

Tips
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
END OF PART B

END OF LAB

63 in stock

SKU: CIS170BILAB6 Category:

Description

CIS 170 Week 6 iLab 6 of 7 Menu-Driven Applications (GUI)

Scenario/Summary
You will code, build, and execute two programs requiring GUI. The first program will ask the user to input a password and then reenter it for verification. The second program is a number guessing game that generates a random number and asks the user to input his or her guess.

Part A: Password Program
Requirements
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:

Tips
Best practice: First make sure to read through this week’s lecture and try it yourself! Then, you’ll be in good shape for this exercise.
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
Requirements
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.

Tips
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
END OF PART B

END OF LAB

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.