This is a Windows Forms applications which uses a database to store Items. It is an example of an inventory manager, it gives the user the ability to add and remove items from the inventory which will save for when the user next uses it.
- Add items to the database
- Remove an item from the database
- View an item in the database
- Change the values of an item
- Error checking on item creation
- Cannot have an item with the same name
- Stores items in a local database
These are forms which provide their own purpose. For example, the form below allows the user to add a new item to the table. There are other forms like editing an item or just viewing it. This form will then tell the main form an item has been created.
Sub Forms like these also support error handling, for example you cannot create a new item without a name.