Use Visual Studio to create a database and name it Education.mdf. The database should have a table named Student, with columns for Student ID, StudentName, StudentClassification (freshman, sophomore, junior, and senior), and Grade. The Student ID should be the primary key. Insert at least five sample rows of data into the Student table. Create an application that displays the Student table in a DataGridView control.
undefined
The form should also have the following controls:
undefined
- A button that, when clicked, displays a message indicating the highest (maximum) Grade in the table.
- A button that, when clicked, displays a message indicating the average Grade in the table.
undefined
What you did was in Main form. The main form should also have a button that, when clicked, displays a second form. The second form should have two buttons. One button for exit and one button to display a message (any message in any way that you like). This second form should be a modeless form.