Question: I need some help by completing the following steps for a Visual Basic project. Score Calculator Score: 98 Score total: 472 Score count Average: $4

I need some help by completing the following steps for a Visual Basic project.
Score Calculator Score: 98 Score total: 472 Score count Average: $4 Clear Scores For this assignment you will create a form that accepts one or more scores from the user. Each time a score is added, the score total, score count, and average score are calculated and displayed. 1. Start a new project named CIS173-Hw3-[uniqname. Be sure to also include the documentation block in your form's code Add labels, text boxes, and buttons to the form and set the properties of the form and its controls so they appear as shown above. When the user presses the Enter key, the Click event of the Add button should fire. When the user presses the Esc key, the Click event of the Exit button should fire Declare two module-level variables to store the score total and the score count. 2. 3. 4. Create an event handler for the Click event of the Add button. This event handler should get the score the user enters, calculate and display the score total, score count, and average score, and move the focus to the Score text box. It should provide for integer entries, but you can assume that the user will enter valid integer values. The code that calculates the average should always round numbers that end in 5 up to the nearest whole number Create an event handler for the Click event of the Clear Scores button. This event handler should set the two module-level variables to zero, clear the text boxes on the form, and move the focus to the Score text box. Create an event handler for the Click event of the Exit button that closes the form. 5. 6. 7. Test the application to be sure it works correctly
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
