Microsoft Visual Basic Studio 2017
Please Create an application that allows the user to enter the gender (either F or M) and GPA for any number of students. The application should calculate the average GPA for all students, the average GPA for male students, and the average GPA for female students. Create a Windows Forms application. Use the following names for the project and solution respectively: Final Project and Final Solution.
1. Change the form file’s name to Main Form.vb
2. Change the form’s Name property to frmMain.
3. Change the form’s Font property to Segoe UI, 9pt.
4. Change the form’s MaximizeBox property to False.
5. Change the form’s StartPosition property to Centerscreen.
6. Build the interface and then code the Exit button The application’s interface is shown in the figure below. The list box should list GPAs from 1.0 through 4.0 in increments of 0.5.
7. Display information that you do not want the user to change during run time in a label. Change the following label properties of the 3 display labels: a. name b. the AutoSize property to False c. BorderStyle property to FixedSingle d. Delete the text from the text property (this is done after the BorderSytle property is changed)
8. Enter the three Option statements in the Code Editor window
9. Set the appropriate tab order
10. Assign access keys where appropriate
11. Code the Calculate button.
Extracted text: GPA Calculator Female GPA: 1.0 O Male Calculate 1.5 2.0 Exit t 2.5 3.0 3.5 4.0 Average GPA All students: Male students: Female students: