-
I want to allow a person to go in and change the options that are available on the menu I created with the Menu Editor. Does anyone know any code that I would use to do that? IE: One menu option is to select a co-worker and you get a list of co-workers, but if one of the co-workers quits then I need to allow someone to take that person off of the menu selections. Thanks
-
I guess the obvious method is to save the name of the workers to a datafile (workers.dat i'll call it) and to create a menu array and load the worker names at run time by adding elements to the menu (load smnuSomeMenu(Counta) for example) and then at the very bottom of the the list add an option to add or remove workers to/from the list.
Hope that helps you
DocZaf
{;->
-
Well that sounds good but how to do it. Anyone got any help on creating an array for the menu?? And to doing the datafile??