MRPeters22
New member
- Local time
- Yesterday, 22:29
- Joined
- Mar 9, 2011
- Messages
- 1
OS: Windows 7 Home 64 bit
Version: Access 2010
Current design:
(note: * indicates a primary key)
tblInventory - *InventoryID (Auto), ItemID (text), CategoryID (text), SupplierID (num), CategoryID (num), InStock (num)
tblSupplier - *SupplierID (Auto), SupplierName (text), PhoneNumber (text), Website (Hyperlink)
tblCategories - *CategoryID (Auto), CategoryName (text)
I have a simple inventory database for medical supplies. My lab is behind technologically in the sense that everything is still done by hand and there's way too much paperwork involved. There's redundancy in almost everything we do. Every time someone wants to order something, they bring the box with them and write down the item name, catalog number, supplier name and quantity to order. The order log is as thick as an encyclopedia and there's no way to track who requested to ordered each item.
Most of my coworkers are afraid of computer usage and up until now I've been using this database by myself.
This quick reference database has up-to-date stock quantities for all items we carry and this helps me keep tabs on our inventory in a more efficient manner. I print out a report list every Friday and carry it around with me as I determine what needs to be ordered. Rinse and repeat weekly.
I've got continuous forms based off of queries. The forms have a couple of buttons (using OnClick with VBA event procedures) to view/sort/manipulate data then to print reports based on this.
I also have a frmSearch where the user can search and further change the view output of the continuous form based on their search txtstring.
For example someone can search for "scalpels" and return only the scalpels in the database in a continuous form layout, then click "Generate Report" to view the report of only scalpels and then print.
NowI want to add some more functionality and more complexity (with VBA?). I would like to expand this to also make the ordering process more efficient.
Goals:
Future development ideas...
I would love to have orders for the day/week automatically emailed to the supervisor by 5pm. All orders placed after a time cutoff would append on the following day's order. Its purpose is to let the supervisor know ahead of time what to expect as far as invoices.
Any suggestions for some VBA commands for the buttons on the ordering form? I'm imagining a small popup form after OnClick to confirm item and quantity.
Thanks,
-Mark
Version: Access 2010
Current design:
(note: * indicates a primary key)
tblInventory - *InventoryID (Auto), ItemID (text), CategoryID (text), SupplierID (num), CategoryID (num), InStock (num)
tblSupplier - *SupplierID (Auto), SupplierName (text), PhoneNumber (text), Website (Hyperlink)
tblCategories - *CategoryID (Auto), CategoryName (text)
I have a simple inventory database for medical supplies. My lab is behind technologically in the sense that everything is still done by hand and there's way too much paperwork involved. There's redundancy in almost everything we do. Every time someone wants to order something, they bring the box with them and write down the item name, catalog number, supplier name and quantity to order. The order log is as thick as an encyclopedia and there's no way to track who requested to ordered each item.
Most of my coworkers are afraid of computer usage and up until now I've been using this database by myself.
This quick reference database has up-to-date stock quantities for all items we carry and this helps me keep tabs on our inventory in a more efficient manner. I print out a report list every Friday and carry it around with me as I determine what needs to be ordered. Rinse and repeat weekly.
I've got continuous forms based off of queries. The forms have a couple of buttons (using OnClick with VBA event procedures) to view/sort/manipulate data then to print reports based on this.
I also have a frmSearch where the user can search and further change the view output of the continuous form based on their search txtstring.
For example someone can search for "scalpels" and return only the scalpels in the database in a continuous form layout, then click "Generate Report" to view the report of only scalpels and then print.
NowI want to add some more functionality and more complexity (with VBA?). I would like to expand this to also make the ordering process more efficient.
Goals:
- User login
- tblOrders, qryOrders, frmOrders
- Each user can browse the list of items and click a button to order an item (one item at a time, for now)
- Once the button is clicked (and the user confirms their choice) it will append to a table that summarizes all orders for the day
- I should be able to know who ordered what and when they ordered it.
Future development ideas...
I would love to have orders for the day/week automatically emailed to the supervisor by 5pm. All orders placed after a time cutoff would append on the following day's order. Its purpose is to let the supervisor know ahead of time what to expect as far as invoices.
Any suggestions for some VBA commands for the buttons on the ordering form? I'm imagining a small popup form after OnClick to confirm item and quantity.
Thanks,
-Mark