Question: I need some help getting week 7 project completed here are the deliverables I only need the code I can complete the user manual part
I need some help getting week 7 project completed here are the deliverables I only need the code I can complete the user manual part
Objectives
Developing a graphical user interface in programming is paramount to being successful in the business industry. This project incorporates GUI techniques with other tools that you have learned about in this class.
Here is your assignment: You work for a landscape company. They have hired you because they need a computer programmer, analyst, and designer to aid them in tracking customer orders. Your skills will be needed in creating a GUI program that calculates the landscape cost and stores the order in the database.
The project has three components: an analysis and design document, the project code, and a user manual. The analysis and design document is due Week 4. The code and user manual are due in Week 7. It is suggested that you begin working on the code in Week 5, which should give you ample time to complete the project. You will find that the lessons and lab assignments will prepare you for the Course Project.
Guidelines
Your application must include at least three tabs. The user will choose grass or gravel, enter the length and width of the yard, as well as the customer name and address. The application will compute the square feet of the yard and the cost of the landscape considering that a grass yard is $25 per square foot and gravel is $15 per square foot. A summary should be displayed, either in a tab or another window, listing the customer name and address, landscape selection, area, and cost. This information should also be stored in the MySQL database table. The program should validate that all information is entered and that the length and width are numeric values. Any numeric or currency values must be formatted appropriately when output. Recommendations for the components used for input are
- radio buttonslandscape type (grass or gravel);
- text fieldscustomer name, customer address, yard length, and yard width; and
- buttonscalculate area, calculate cost, submit order, display order summary, display order list.
Create a MySQL database table and call it Landscape . Add the following fields:
| Field | Type |
| CustomerName | varchar(30) |
| CustomerAddress | varchar(50) |
| LandscapeType | varchar(10) |
| YardLength | double |
| YardWidth | double |
| LandscapeCost | double |
In addition to entering new customer orders, your application should list all customer orders stored in the database. These will be viewed as a list, in a text area, and will not be updated by the user.
Analysis and Design Document (Due Week 4)
In Week 4, you will complete the analysis and design for the project. You will use the guidelines described above and the grading rubric below to complete this document. You will create the following items.
- Request for new application
- Problem analysis
- List and description of the requirements
- Interface storyboard or drawing
- Design flowchart or pseudocode
The analysis and design document will be a single MS Word document, which contains all descriptions and drawings. See the grading rubric below for the analysis and design document, due in Week 4.
| Item | Points | Description |
|---|---|---|
| Request for New Application | 20 | A table containing: date of the request, name of the requester (your professor), the purpose of the request, the title of the application (create your own title), and brief description of the algorithms used in the application |
| Problem Analysis | 20 | Analyze the problem to be solved, and write in a few words what is the problem and what is being proposed to solve the problem |
| List and Description of Requirements | 20 | A description of the items that will be implemented in order to construct the proposed solution |
| Interface Storyboard or Drawing | 20 | A picture or drawing of what the application will look like; must include the image of each section of the application in detail |
| Design Flowchart or Pseudocode | 20 | A sketch of the flow of the application or the pseudocode of the application |
| Total | 100 | Meets or exceeds expectations |
User Manual (Due Week 7)
Your actual Course Project and user manual are due at the end of Week 7. However, it is strongly recommended that you start your project in Week 5 to avoid any last minute issues.
In Week 7, you will be required to submit a user manual, as well as your Java code. The user manual can be a simple Word document with screen shots that explains how to run your application. Your mark will depend both on the program quality and the quality of the user manual.
Here are some more detailed guidelines about the user manual.
- It does not need to be long, probably not more than five pages, including screen shots.
- Write at the expected user's level, not too technical.
- Detail all the functionality that the application provides.
- For each function, show what its purpose is and sample execution, with a screen shot.
| User Manual | Points | Description |
|---|---|---|
| Length | 10 | Manual contains explanation in detail of all relevant areas of the application |
| Screenshots | 10 | Images of each section of the application |
| Operations | 10 | Detailed operation of each section of the application |
| User's Level Language | 10 | Must not contain code or any other technical items irrelevant to the users |
| Total | 40 | Meets or exceeds expectations |
Application Code (Due Week 7)
The following grading rubric will be used for the code portion of the project.
| Landscape Application | Points | Description |
|---|---|---|
| Standard Header | 2 | Must contain program name, student name, and description of the program |
| Program Compiler | 2 | Program does not have any error |
| Program Execution | 2 | Program runs without any error |
| Number of Tabs | 10 | Three or more tabs are used. |
| Components for All Required Inputs | 35 | Components for customer name, address, landscape type, length, width, area, and cost with buttons to calculate area, calculate cost, display order summary, and display order list are included. |
| Area Calculation | 4 | Area is calculated correctly. |
| Cost Calculation | 5 | Cost is calculated correctly. |
| Data Validation | 10 | If no values or non-numeric values are entered, the proper error message should display. |
| Data within Database Table | 10 | When values are entered, the data is stored correctly in the database table. |
| Customer Orders | 10 | All records saved to the database are displayed in a list with appropriate formatting. |
| Correct Output | 10 | When values are entered, the order summary is shown with appropriate formatting. |
| Total | 100 | Meets or exceeds expectations |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
