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.
Include an appropriate and meaningful project name in the title bar of the form.
Create textboxes to use as input controls for group name and minutes. Include
associated identifying labels for each input control.
Create an output label to displaying the charge for the group entered.
Add a group box to display the summary information.
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.
Add an Exit button.
Add Keyboard Access Keys for all buttons.
Make sure the Tab Order for the forms controls is consistent.
Add a Status Bar to the form that contains the current date and your name as the
programmer.
Add comments in the code to identify the project name and purpose and your name as
the programmer.
Add Option Statements to the code module.
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 $ per hour. Use VB code to divide the
hourly rate by 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.
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.
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
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
