Purchase Solution

Create a GUI program that allows users to ingest "Mission Title" and "Adjusted Total Box Office Profit" data from text files in to two 1 dimension arrays.

Not what you're looking for?

Ask Custom Question

Obtain the required information from attached "title.txt" and "boxoffice.txt" files.

1. Create a form that has a text area that will hold Mission Title and Adjusted Total Box Office Profit data.
2. Create 2 buttons that allows users to sort the arrays by "Title" from A-Z or "Adjusted total box office" contents from low to high (0-9).
3. Create a "Load" button that populates the two 1 dimension arrays with all of the information and displays onto the text area as read by the text file.
4. The load button must populate the arrays by ingesting two provided text files. Ensure that the arrays are large enough to hold future data (>50 elements).
5. Use the two provided text files and ingest them by using the File Browser. Do not hard code any location.
6. Create a single text area to display the two array information in a combined manner.
7. When a user clicks 'Load', the program ingests the two files and displays the info into a single text area.
8. Create a clear button that clears the arrays and also the text area.
9. DO NOT hard code file data or expected information. Meaning, do not HARD CODE data into the array or file locations.
10. If a user already clicked 'Load' and they click 'Load' again, clear all existing data. Ingest the two files and update the display.
11. When there are >= 3 entries in the array, display on a label the top 1/3rd adjusted total box office mission titles listed from high to low.
12. Do not hard code the top/summary data. The data used in the top calculation shall be used from the arrays.
13. Ensure to provide instruction to the user of how to use the program. Create a menu bar item which contains a "help" function.
14. Ensure that sorting the arrays does not corrupt the relationship between the two arrays. You can perform the sort with one line of code.
15. You should be able to sort A-Z, Z-A, 0-9 and also 9-0 while still retaining the correct relationships.

Purchase this Solution

Purchase this Solution


Free BrainMass Quizzes
Basic Networking Questions

This quiz consists of some basic networking questions.

Basic Computer Terms

We use many basic terms like bit, pixel in our usual conversations about computers. Are we aware of what these mean? This little quiz is an attempt towards discovering that.

C++ Operators

This quiz tests a student's knowledge about C++ operators.

C# variables and classes

This quiz contains questions about C# classes and variables.

Java loops

This quiz checks your knowledge of for and while loops in Java. For and while loops are essential building blocks for all Java programs. Having a solid understanding of these constructs is critical for success in programming Java.