Use VB to allow a user to manipulate a database according to the following:
* Allow the user to scroll through the list of students while showing student ID, student name, advisor name, and department.
* Allow the user to add a new student record, delete an existing student record, and update an existing student record.
* When a user adds a new student, a new student ID should be assigned automatically. Do not reuse old student IDs from deleted students.
* Provide a list the students in ascending alphabetical order according to name.
Program Requirements
* Create a database using the three tables: one for student information, one for advisor information, and one for department information. It may be an Access database or created using the VB data manager.
* You must center all forms on the screen using a common procedure.