home *** CD-ROM | disk | FTP | other *** search
- local $choice , $cashier , $list , $title , $password , $sp
- local $choice1 , $list1 , $new
- czbreak off
- label MAIN
- screen clear 14 8 no-border
- screen draw box 3 1 8 23 14 8
- screen draw box 9 1 19 23 14 8
- screen draw box 3 25 6 56 14 8
- screen draw box 3 58 8 80 14 8
- screen draw box 9 58 19 80 14 8
- screen draw box 7 25 17 56 14 8
- screen print 2 1 14 8 " . . . . . . . . "
- screen print 4 29 13 8 " V I D E O A L I V E"
- screen print 5 27 3 8 " Custom Video Shop Software."
- screen print 3 5 15 8 " Customer Menu "
- screen print 9 4 15 8 " Custom Reports "
- screen print 7 35 15 8 " Main Menu "
- screen print 3 61 15 8 " Inventory Menu "
- screen print 9 62 15 8 " Manager Menu "
- screen print 9 32 3 8 "Enter Rental Invoice"
- screen print 10 32 3 8 "Enter Rental Returns"
- screen print 11 32 3 8 "Customer File Menu"
- screen print 12 32 3 8 "Inventory File Menu"
- screen print 13 32 3 8 "Manager File Menu"
- screen print 14 32 3 8 "Custom Reports Menu"
- screen print 15 32 12 8 "Quit"
- screen print 15 37 13 8 "VIDEO ALIVE"
-
- screen print 5 4 3 8 "A Add Customer"
- screen print 6 4 3 8 "B Search Customer"
-
- screen print 5 61 3 8 "A Add Movie"
- screen print 6 61 3 8 "B Search Movie"
-
- screen print 11 4 3 8 "A Invt. Movie #"
- screen print 12 4 3 8 "B Invt. Catagory"
- screen print 13 4 3 8 "C Invt. Title"
- screen print 14 4 3 8 "D Cust. Activity"
- screen print 15 4 3 8 "E Late Report"
- screen print 16 4 3 8 "F"
- screen print 16 7 12 8 "END OF DAY "
-
- screen print 11 61 3 8 "A Set Price Codes"
- screen print 12 61 3 8 "B Update Movies"
- screen print 13 61 3 8 "C Update Customer"
- screen print 14 61 3 8 "D New Releases"
- screen print 15 61 3 8 "E Review History"
- screen print 16 62 4 8 "Enter Password"
- screen print 20 1 14 8 " . . . . . . . . "
- screen print 21 15 4 8 "VIDEO ALIVE Copyright (@)1990 Forever Computers."
- screen print 22 10 14 8 " Licensed Exclusively to Jay's Music & Video Inc. Pawt. R.I."
- screen print 18 27 15 8 "... Move Space or Press ..."
- screen print 19 27 15 8 " Letter "
- let $list = "A) B) C) D) E) F) G)"
- screen menu 9 27 15 31 3 8 4 15 1 $list $choice
- let $choice = group($list,$choice)
- case ($choice)
- when "A)"
- execute "invoice"
- JUMP MAIN
- when "B)"
- execute "return"
- JUMP MAIN
- when "C)"
- execute "CF"
- JUMP MAIN
- when "D)"
- execute "IF"
- JUMP MAIN
- when "E)"
- execute "MF"
- JUMP MAIN
- when "F)"
- execute "RF"
- JUMP MAIN
- when "G)"
- execute "quit"
- JUMP MAIN
- when "0"
- execute "START"
- otherwise
- execute "m"
- end case
-
-
-
-
-
-
-
-
-
-
-
-