a) Create a GUI application named firstnameA2_1175_002 that contains the classes given below.
b) Create a class named Student that contains
i. fields for student id (int), student full name (should be an array), date of birth (string format: mm/dd/yyyy), department (string), medical coverage (bool) and status either domestic or international (string).
ii. one default constructor.
iii. one parameterized constructor that accepts one parameter for each of the fields.
iv. property for each of the field.
v. GetLastName( ) method to extract last name from the full name.
vi. GetBirthYear( ) method to extract birth year from the date of birth.
vii. a ToString( ) method.
c) Design a GUI app having StudentForm as shown in figure# 1 given below. The StudentForm has Add, Display Records, Search and Exit options.
d) Clicking the Add button should open AddForm as shown in figure# 2 which will accept student id, full name (format: first_name last_name, with a space in between first name
and last name), date of birth (format: mm/dd/yyyy), department, medical coverage and status as input as shown in figure# 2. Student Id (numeric) and full name should be validated and assume that the date of birth is entered in the right format. AddForm has three buttons Add, Reset and Home.
• Clicking the Add button should use valid user input to instantiate an object of the Student class and save the data in a file named StudentInfo.txt with a confirmation message as shown in figure# 3.
• Clicking the Reset button should reset all the fields in the AddFrom.
• Clicking the Home button should take you back to StudentForm.
e) Clicking the Display Record button should display extract all the records from the StudentInfo.txt and should display in a listbox as shown in Figure# 4, displaying only last name and department name for each student.
f) Asking a user to enter an id (figure# 5) to search and clicking the Search button should display a particular student record in a textbox as shown in figure# 6. If a student id does not exist, display an error message as shown in figure# 7.
g) Clicking the Exit button should close the application.
Note:
• Don’t forget to add comments.
• For this assignment data should be read and written to a text file as shown in figure# 7.
DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma
Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t
Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th
1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of
1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of