Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 1.27 KB

README.md

File metadata and controls

29 lines (18 loc) · 1.27 KB

InventoryManager

About

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.

Features

  • 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

Inventory Manager Form

Screenshot

Inventory Manager Sub Forms

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.

AddNewItem

Sub Forms like these also support error handling, for example you cannot create a new item without a name.

AddNewItemError