Answered step by step
Verified Expert Solution
Question
1 Approved Answer
CODE IN VISUAL STUDIO IN C# 1. Acme Roofing Company has asked you to develop an application to help them in bidding roofing jobs. The
CODE IN VISUAL STUDIO IN C#
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
- Provide three textboxes and three labels - one text box for the customers 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
- 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
- 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
- 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
- Set Calculate as the Accept Button and Exit as the Cancel Button. 5 pts
For the Calculation command button, perform the following tasks:
- 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
- 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
- Display the computed results in the appropriate text boxes. 10 pts
Step 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