Question: Show me the steps to solve Create a project that allows the user to input the names of Music Groups and the amount of time

Show me the steps to solve
Create a project that allows the user to input the names of Music Groups and the amount of
time in minutes they spent in the recording studio. The project will calculate the charges
for the specified number of minutes for the group entered, accumulate the total charges for
all groups, the average charge for all groups, and the number of groups.
1. Include an appropriate and meaningful project name in the title bar of the form.
2. Create textboxes to use as input controls for group name and minutes. Include
associated identifying labels for each input control.
3. Create an output label to displaying the charge for the group entered.
4. Add a group box to display the summary information.
5. In the summary information group box, add identifying and output labels for the Total
Charges for All Groups, the Average Charges for All groups, and the Number of Groups.
6. Add an Exit button.
7. Add Keyboard Access Keys for all buttons.
8. Make sure the Tab Order for the forms controls is consistent.
9. Add a Status Bar to the form that contains the current date and your name as the
programmer.
10. Add comments in the code to identify the project name and purpose and your name as
the programmer.
11. Add Option Statements to the code module.
12. Add a button for Calculating the charges for a group. Make the Calculate button work
when the user presses ENTER.
Write code that will calculate and output: charges for one group, total and
average for all groups, and number of groups.
Use a constant for the rental rate of $200 per hour. Use VB code to divide the
hourly rate by 60 to get the rental rate per minute.
Output all charges formatted as currency.
Surround the code with a Try Catch block to prevent invalid data from ending
the program execution. Include a meaningful error message (using a
message box) on Catch.
13. Add a button that clears all input controls, clears the output control for the current
group, and resets the Focus to the Group Name textbox. Make the Clear button work
when the user presses ESC.
14. Add a button for Clearing All summary variables. It should also clear the input controls
and reset the Focus to the Group Name textbox (for this part just call the Clear button
event, dont duplicate the code for the Clear button event)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!