home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / PPEMNU10.ZIP / PPEMNU.PPE (.txt) < prev   
PCBoard Programming Language Executable  |  1993-08-14  |  1KB  |  93 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 1.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.     String   STRING002
  21.     String   STRING003
  22.  
  23. ;------------------------------------------------------------------------------
  24.  
  25.     :LABEL001
  26.     Cls
  27.     PrintLn "@X00      @X7F ┌───────────────────────────────────────────────────────────────@X70┐ @XFF"
  28.     PrintLn "      @X7F │ @X70                       PPE MENU v1.00                         @X70│ @XFF"
  29.     PrintLn "      @X7F │ @X70                @X71The Hogard Software Solutions                 @X70│ @XFF"
  30.     PrintLn "      @X7F │                @X70BBS: (214) 641-6292  14,400 bps                @X70│ @XFF"
  31.     PrintLn "      @X7F └@X70───────────────────────────────────────────────────────────────┘ @XFF"
  32.     PrintLn ""
  33.     DispFile PPEPath() + "PPEMNU", 2 + 1 + 4
  34.     STRING001 = ""
  35.     STRING002 = PPEPath() + "PPEMNU.CFG"
  36.     InputStr "@X0BYour selection @X07", STRING001, 10, 2, "1234567890 ", 270
  37.     If (STRING001 == "") Goto LABEL002
  38.     STRING003 = ReadLine(STRING002, STRING001)
  39.     Call STRING003
  40.     Gosub LABEL001
  41.     Goto LABEL003
  42.     :LABEL002
  43.     End
  44.     :LABEL003
  45.  
  46. ;------------------------------------------------------------------------------
  47. ;
  48. ; Usage report (before postprocessing)
  49. ;
  50. ; ■ Statements used :
  51. ;
  52. ;    1       End
  53. ;    1       Cls
  54. ;    2       Goto 
  55. ;    3       Let 
  56. ;    6       PrintLn 
  57. ;    1       If 
  58. ;    1       DispFile 
  59. ;    1       InputStr 
  60. ;    1       Gosub 
  61. ;    1       Call 
  62. ;
  63. ;
  64. ; ■ Functions used :
  65. ;
  66. ;    4       +
  67. ;    1       ==
  68. ;    1       !
  69. ;    2       PPEPath()
  70. ;    1       ReadLine()
  71. ;
  72. ;------------------------------------------------------------------------------
  73. ;
  74. ; Analysis flags : C
  75. ;
  76. ; C - Call child PPE ■ 3
  77. ;     This is usually normal, but may be a tricky way to launch some
  78. ;     sysop-only commands.
  79. ;     ■ Search for : CALL
  80. ;
  81. ;------------------------------------------------------------------------------
  82. ;
  83. ; Postprocessing report
  84. ;
  85. ;    0       For/Next
  86. ;    0       While/EndWhile
  87. ;    0       If/Then or If/Then/Else
  88. ;    0       Select Case
  89. ;
  90. ;------------------------------------------------------------------------------
  91. ;                 AEGiS Corp - Break the routines, code against the machines!
  92. ;------------------------------------------------------------------------------
  93.