I have a food menu program with many restrictions due to our User clientele. The User is allowed to see only what we choose and not the whole table. This is what I have:
The User can have 3 choices of 3 different menus (Option Group). Inside each OpGrp the User can see menu items for that group only (Unbound List Box from a Lkp tbl). If Opt1 is chosen, then a previously invisible (SubMenu)Table (Database View) with Check Boxes will appear, allowing the User to select items (from 1 to 10) via check boxes.
If the User changes his mind and selects Choice2, then everything that is now visible for Choice1 disappears and becomes null. The items now appear for Choice2 (in the same manner as described above).
This all works fairly well, until another User (who will Maintain this program) needs to change the menu items. I need some way for the Maintainer to change the item in the LkpTable and then be AUTOMATICALLY entered into the Selections Table (tblName used for the SubMenu), then have these changes show up on the SubMenu Check Box Table.
I used Check Boxes because I will eventually need to count each item and also need a complete report for each individual User.
I am limited on my knowledge of understanding how to put VBA Code together and also whether to put it in a current Private Sub or to create a new one.
Any help will be greatly appreciated.
The User can have 3 choices of 3 different menus (Option Group). Inside each OpGrp the User can see menu items for that group only (Unbound List Box from a Lkp tbl). If Opt1 is chosen, then a previously invisible (SubMenu)Table (Database View) with Check Boxes will appear, allowing the User to select items (from 1 to 10) via check boxes.
If the User changes his mind and selects Choice2, then everything that is now visible for Choice1 disappears and becomes null. The items now appear for Choice2 (in the same manner as described above).
This all works fairly well, until another User (who will Maintain this program) needs to change the menu items. I need some way for the Maintainer to change the item in the LkpTable and then be AUTOMATICALLY entered into the Selections Table (tblName used for the SubMenu), then have these changes show up on the SubMenu Check Box Table.
I used Check Boxes because I will eventually need to count each item and also need a complete report for each individual User.
I am limited on my knowledge of understanding how to put VBA Code together and also whether to put it in a current Private Sub or to create a new one.
Any help will be greatly appreciated.