Answered step by step
Verified Expert Solution
Question
1 Approved Answer
in visual studio 2019 You are to create an application in Visual Studio using C# to accomplish the following tasks. First, create a new project.
in visual studio 2019
You are to create an application in Visual Studio using C# to accomplish the following tasks. First, create a new project. Be sure to save your project regularly. 1. Acme Roofing Company has asked you to develop an application to help them in bidding roofing jobs. The form should be called frmAcmeRoofing and the text of the form should be "Acme Roofing Company" - 5 pts 2. Provide three textboxes and three labels - one text box for the customer's name, one text box for the price per square foot, and one text box for the total square feet of the roof with appropriate label prompts. - 5 pts 3. Below the two text boxes, provide a label box with the appropriate prompt for the computed total price. This text box should be read only. - 5 pts 4. Below the total price text box, add a text box and label for Job Total. This will show the calculated total each time the user hits calculate. - 5 pts 5. Below the two label boxes, add three command buttons - Calculate, Clear, and Exit. The work for the calculation is listed below. The Clear button should reset all of the above user interface. The Exit button should close the application. - 5 pts 6. Set Calculate as the Accept Button and Exit as the Cancel Button.-5 pts For the Calculation command button, perform the following tasks: o Compute the total price of the roof - the price per square foot times the square footage. The computed price should be of type decimal. - 30 pts o When Calculate is clicked a second time, as well as each subsequent time after, the Job Total box should calculate a running total price. -30 pts o Display the computed results in the appropriate text boxes. - 10 pts You are to create an application in Visual Studio using C# to accomplish the following tasks. First, create a new project. Be sure to save your project regularly. 1. Acme Roofing Company has asked you to develop an application to help them in bidding roofing jobs. The form should be called frmAcmeRoofing and the text of the form should be "Acme Roofing Company" - 5 pts 2. Provide three textboxes and three labels - one text box for the customer's name, one text box for the price per square foot, and one text box for the total square feet of the roof with appropriate label prompts. - 5 pts 3. Below the two text boxes, provide a label box with the appropriate prompt for the computed total price. This text box should be read only. - 5 pts 4. Below the total price text box, add a text box and label for Job Total. This will show the calculated total each time the user hits calculate. - 5 pts 5. Below the two label boxes, add three command buttons - Calculate, Clear, and Exit. The work for the calculation is listed below. The Clear button should reset all of the above user interface. The Exit button should close the application. - 5 pts 6. Set Calculate as the Accept Button and Exit as the Cancel Button.-5 pts For the Calculation command button, perform the following tasks: o Compute the total price of the roof - the price per square foot times the square footage. The computed price should be of type decimal. - 30 pts o When Calculate is clicked a second time, as well as each subsequent time after, the Job Total box should calculate a running total price. -30 pts o Display the computed results in the appropriate text boxes. - 10 ptsStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started