Purchase Solution

Modifying Inventory Programs

Not what you're looking for?

Ask Custom Question

Modify the Inventory Program to include an Add button, a Delete button, and a Modify button on the GUI. These buttons should allow the user to perform the corresponding actions on the item name, the number of units in stock, and the price of each unit. An item added to the inventory should have an item number one more than the previous last item.

-Add a Save button to the GUI that saves the inventory to a C:datainventory.dat file.
-Use exception handling to create the directory and file if necessary.
-Add a search button to the GUI that allows the user to search for an item in the inventory by the product name. If the product is not found, the GUI should display an appropriate message. If the product is found, the GUI should display that product's information in the GUI.

Purchase this Solution

Solution Summary

The solution modifies inventory programs to include an add button, delete button and modify button on the GUI. The program is in Java.

Solution Preview

Please see the attachments.

// Product.java

public class Product {
private int itemNum; // Item Number
private String itemName; // Item Name
private int units; // Number of units
private double price; // Price per unit

// Define getter and setters
public void setItemNum(int ...

Purchase this Solution


Free BrainMass Quizzes
C++ Operators

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

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.

Word 2010: Tables

Have you never worked with Tables in Word 2010? Maybe it has been a while since you have used a Table in Word and you need to brush up on your skills. Several keywords and popular options are discussed as you go through this quiz.

Javscript Basics

Quiz on basics of javascript programming language.

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.