In my program I have 2 different menus. After each menu can I use the same Label to call a value from a list?
At the top of my program I have a list:
.00024->A
There are many other items here but I only need one for my example.
Then on my 1st menu I have:
Menu("TEST","ALUM",A, and so on)
Lbl A
A->Y
GoToC
Then I have:
Lbl C
Menu("TEST 1","ALUM",L, and so on)
Lbl L
A->Z
GotoD
I want to add more options to my list so I'd like to be able to get L back so I was wondering if I could replace the "L" in my Test 1 menu with "A" like my Test menu without causing any problems?
I don't have my 84 with me or I would just make the change and try it.
Thanks.