home *** CD-ROM | disk | FTP | other *** search
- local $choice , $list , $title , $password
- czbreak off
- screen print 16 62 4 8 "Enter Password"
- screen input 17 66 4 4 6 $password
- if $password = "MOGULS"
- jump mgr
- elseif $password = "CrAiG"
- suspend
- else
- beep
- execute "Main2.rf3"
- end if
- label mgr
- let $list = "A B C D E"
- screen menu 11 60 15 62 3 8 4 15 1 $list $choice
- let $choice = group($list,$choice)
- case ($choice)
- when "A"
- execute "priceset"
- execute "main2"
- when "B"
- execute "rinvt"
- execute "main2"
- when "C"
- execute "rcust"
- execute "main2"
- when "D"
- execute "nrelease"
- execute "main2"
- when "E"
- execute "histsea"
- execute "main2"
- otherwise
- beep
- execute "main2"
- end case
-
-