Point of Sales using C#

POS (Point of Sales) system is an all-in-one way to keep track of your business cash flow.
Screenshot:

Features to consider in a POS system include the following:
  • Sales module. The system is capable of managing sales transaction.
  • Product module. The system is capable of managing product details such as product code, description, and price.
  • Stock In module. The system is capable of receiving new stocks.
  • Sales history module. The system is capable of generating sales filter by date.
The following are the tables and query:

  1. tblproduct (pcode, description, unit, price, qty)
  2. tblsales (id, transcode, pcode, price, qty, subtotal, sdate)
  3. tblstockin (id, pcode, qty, sdate)
  4. tbluser (username, password, name)
  5. qsales
  6. qstockin
Programming Language: C#
Database: MS Access

Defualt user account:
username: cashier
password: 1234pass

Click here to download the system