Question: This is a Visual Basic Windows Forms Application In this exercise, you'll create a form that accepts the length and width of a rectangle from
This is a Visual Basic Windows Forms Application

In this exercise, you'll create a form that accepts the length and width of a rectangle from the user and then calculates the area and perimeter of the rectangle. Area And Perimeter l 2 100 Length: Area: Penmeter. 250 Calculate Ext . Start a new project named AreaAndPerimeter Add labels, text boxes, and buttons to the default form and set the properties of the form and its controls so they appear as shown above. When the user presses the Enter key, the Click event of the Calculate button should fire o o When the user presse s the Esc key, the Click event of the Exit button should fire. Create an event handler for the Click event of the Calculate button. This event handler should get the values the user enters for the length and width, calculate and display the area (length x width) and perimeter (2 x length + 2 x width), and move the focus to the Length text box. It should provide for decimal entries, but you can assume that the user will enter valid decimal values. Create an event handler for the Click event of the Exit button that closes the form. . Test the application to be sure it works correctly . Submit your entire solution folder zipped
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
