The purpose of this project is to create a program that will look and feel something like a database interface, but instead you'll write code to access a standard file.
A small business has brought you in as an "odd-jobs" programmer. Your current project is to write a simple program to track employee's hours. All your boss wants is a program that will let him enter an employee's name and the number of hours he or she worked.
You should store the employee's records in arrays, and that you'll never have more than 20 employees.
The program should have at least two text boxes (for entering the name and hours) and four buttons: Add (which will add the currently-entered record into the arrays, at the next empty position), Save (which will save all the records into the data file), Load (which will load all the records from the data file into your arrays), and Display Report (which will pull up a second form that contains only a list box, and where the list box displays all the records).
Saving and loading should overwrite all the records, and you should only have one data file. You can use either sequential or random access for the data file; your choice.
Extra Improvements: