Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
Visual Basic Problem (INTRO TO VISUAL BASIC) **I will tip as well!** --I need a visual basic (windows form) application solution to the following...
Visual Basic Problem (INTRO TO VISUAL BASIC)
**I will tip as well!**
-->I need a visual basic (windows form) application solution to the following problem:
-->I added 1 image for convenience and reference ----> (It will need to look like the image)
Carpet Price Calculator
The Westfield Carpet Company has asked you to write an application that calculates the price of carpeting. To calculate the price of a carpeting, you multiply the area of the floor (width × length) by the price per square foot of carpet. For example, the area of a floor that is 12 feet long and 10 feet wide is 120 feet. To cover that floor with carpet that costs $8 per square foot would cost $960.
You should create a class named Rectangle with the following properties:
Width: A single
Length: A single
Area: A single
The Area property should be read-only. Provide a method named CalcArea that calculates width × length and stores the result in the Area property. Next, create a class named Carpet with the following properties:
Color: A string
Style: A string
Price: A decimal
The application should have a form similar to the one shown in Figure 12-16. (The carpet price is the price per square foot.) When the Calculate button is clicked, the application should copy the data in the text boxes into the appropriate object properties, and then display the area and price.