Create a visual basic program that collects student registration information and generates a tuition bill!

profileTopsolutions
 (Not rated)
 (Not rated)
Chat

Create a visual basic program that collects student registration information and generates a tuition bill.
The application is to accept:

By control:
The student's residency status - either in state or out of state
The student's attendance status - either full time or part time.

By Textbox:
The student's ID number 100 to 999. This is assigned at registration.
The student's last name
The student's first name
The number of credit hours the student has registered for.

The application is to display the following arranged in column to a list box:
The student's ID
The student's last and first name
The student's attendance status (full / part time)
The student's tuition for the semester (formatted as currency)

The program should be able to process tuition for up to ten students and store the information in a structure. The solution should make use of:
At least 1 function
At least 1 procedure
An array of structures

An IO file that will store the tuition records when the program terminates. The IO file should reflect the contents of the array of structures
Tuition is based on the following:
Full Time tuition – Resident (12 credit hours and over) $2200.00
Full time tuition – Out of state Resident $5900.00
Part time tuition - Resident (per credit) $180.00
Part time tuition – out of state Resident $490.00
Full time fees - $220.00
Part time fees - $100.00

Additional requirements:
The program should send a copy of the array of structures to a text output file upon closing the program.
The program should allow the user to delete a tuition record from the array of structures.
The program should sort the tuition records prior to writing them to the output file.
The program should detect and handle non invalid input.
The listbox should be reflective of the contents of the array of structures.

    • 12 years ago
    Solution
    NOT RATED

    Purchase the answer to view it

    blurred-text
    • attachment
      student_registration_form.zip