Handling of Menu
Handling of Menu
(OP)
HI! I'm a programmer which was assigned to work on a program
regarding an Information System. I have a problem regarding handling of menus. The enabling of menu depends on the codes via access on passwords. There are different levels on the access and some of its access requires disabling of menus upon initialisation or some of the pads. I have browsed on some resources but it can't find something that discusses menu in a more detailed way. By the way I am using a menu builder to create a menu. Your help will mean a lot! More Power!
regarding an Information System. I have a problem regarding handling of menus. The enabling of menu depends on the codes via access on passwords. There are different levels on the access and some of its access requires disabling of menus upon initialisation or some of the pads. I have browsed on some resources but it can't find something that discusses menu in a more detailed way. By the way I am using a menu builder to create a menu. Your help will mean a lot! More Power!
RE: Handling of Menu
For example, if the security code for each person is stored in table Associate, field name Security and you have accessed their record:
do CASE
CASE Associate.Security = 1
Do Menu Fullmenu
CASE Associate.Security = 2
Do Menu Menu-2
ETC...
Hope this helps
The Old Dude
RE: Handling of Menu
RE: Handling of Menu