Menu(
What is a Menu(? A Menu( is a list of named Lbls. A completed Menu might look like this in programming:
Menu("List of Days","Sunday",1,"Monday",2,"Tuesday",3,"Wednesday",4,"Thursday",5
While, when the program is executed, it will look like this:
List of Days
1:Sunday
2:Monday
3:TuesdayAnd so on.
To create a Menu(, first select Menu( from the prgm menu. Next place a ". Then, the title (I will use 'Family Members'). Then another ". It should now look like this:Menu("Family Members"
Next, place a comma (,) and another quotation mark ("). Now it should look like this:
Menu("Family Members","
Next place the first title for the Lbl. This means, what will be shown first when you finish. I will use Bob. You then need to place a quote mark ("), then a comma (,). Now, you need to put the name of Lbl (read 'loop section'). I will use the Lbl name 'B'. Next place another comma (,) and finally another ". If you have followed this correctly, it should now look like this:
Menu("Family Members","Bob",B,"
To add more names, just repeat the above process. I will use the names, Bob, Sue, and Jean. My complete Menu( will now look like this:
Menu("Family Members","Bob",B,"Sue",S,"Jean",J
Notice how, for the last name and Lbl 'Jean', I didn't put another , or ". Don't. If you do, it will mess it up.
Note-You need to place the appropriate Lbl name that you put in the Menu(. I would need to place B, S, and J somewhere in the program.