Hi,
a few years ago I wrote a library for displaying a menu in the console. I've uploaded it to
http://basicprogramming.org/derek/lib/menu.yab I haven't looked at it for a long time but it may help you.
If you want something less complicated as a demo then ask and I'll write something more basic but that will not happen till tomorrow night at the earliest, I'm afraid.
dim a$(3,2)
a$(1,1)="option 1"
a$(2,1)="option 2"
a$(3,1)="option 3"
opt = menu(a$())
print "Option was ", opt
will print a menu and allow a choice to be made. The choice will be marked in the second dimension of the array so next time it is used the previous choice will be highlighted.
Sorry you haven't had a reply earlier but I've been busy all day.
Derek.