home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / SL_UTL10.ZIP / SL-NC.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1993-08-28  |  2KB  |  110 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.     String   STRING004
  23.     String   STRING005
  24.     String   STRING006
  25.     String   STRING007
  26.  
  27. ;------------------------------------------------------------------------------
  28.  
  29.     InputStr "Do you want to leave a message for the Next Caller", STRING007, 15, 1, "YyNn", 2 + 4
  30.     If (Upper(STRING007) <> "Y") End
  31.     PrintLn 
  32.     PrintLn 
  33.     PrintLn "@X09Enter Your Message Now.       Enter /S to save or /A to Abort    (50 Lines Max)"
  34.     PrintLn "@X09───────────────────────────────────────────────────────────────────────────────"
  35.     Delete TempPath() + "MAIL.!!!"
  36.     FCreate 1, TempPath() + "MAIL.!!!", 1, 0
  37.     :LABEL001
  38.     If (STRING005) Goto LABEL002
  39.     STRING001 = ""
  40.     STRING002 = 79
  41.     STRING003 = ">_"
  42.     STRING004 = " 0123456789!@#$%^&*()-=_+`~qwertyuiop[]\|asdfghjkl;'zxcvbnm,./<>?:{}QWERTYUIOPASDFGHJKLZXCVBNM"
  43.     InputStr STRING003, STRING001, 9, STRING002, STRING004, 512
  44.     Newline
  45.     If (STRING006 > 50) STRING001 = "/S"
  46.     STRING006 = STRING006 + 1
  47.     If (Upper(STRING001) == "/A") STRING005 = 1
  48.     If (Upper(STRING001) == "/S") Then
  49.         STRING005 = 1
  50.         PrintLn "Writing msg"
  51.         FClose 1
  52.     Endif
  53.     FPut 1, STRING001
  54.     FPut 1, Chr(13)
  55.     Goto LABEL001
  56.     :LABEL002
  57.     FClose 1
  58.     Delete PPEPath() + "lc.txt"
  59.     Rename TempPath() + "MAIL.!!!", PPEPath() + "lc.txt"
  60.     End
  61.  
  62. ;------------------------------------------------------------------------------
  63. ;
  64. ; Usage report (before postprocessing)
  65. ;
  66. ; ■ Statements used :
  67. ;
  68. ;    2       End
  69. ;    3       Goto 
  70. ;    8       Let 
  71. ;    5       PrintLn 
  72. ;    5       If 
  73. ;    1       FCreate 
  74. ;    2       FClose 
  75. ;    2       FPut 
  76. ;    2       Delete 
  77. ;    2       InputStr 
  78. ;    1       Newline
  79. ;    1       Rename 
  80. ;
  81. ;
  82. ; ■ Functions used :
  83. ;
  84. ;    7       +
  85. ;    2       ==
  86. ;    1       <>
  87. ;    1       >
  88. ;    2       !
  89. ;    3       Upper()
  90. ;    1       Chr()
  91. ;    2       PPEPath()
  92. ;    3       TempPath()
  93. ;
  94. ;------------------------------------------------------------------------------
  95. ;
  96. ; Analysis flags : No flag
  97. ;
  98. ;------------------------------------------------------------------------------
  99. ;
  100. ; Postprocessing report
  101. ;
  102. ;    0       For/Next
  103. ;    0       While/EndWhile
  104. ;    1       If/Then or If/Then/Else
  105. ;    0       Select Case
  106. ;
  107. ;------------------------------------------------------------------------------
  108. ;                 AEGiS Corp - Break the routines, code against the machines!
  109. ;------------------------------------------------------------------------------
  110.