home *** CD-ROM | disk | FTP | other *** search
/ Carsten's PPE Collection / Carstens_PPE_Collection_2007.zip / T / THTCK231.ZIP / TEST574.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1994-06-12  |  674b  |  98 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 2.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.     String   STRING002
  21.     String   STRING003
  22.     String   STRING004
  23.  
  24. ;------------------------------------------------------------------------------
  25.  
  26.     FOpen 1, PPEPath() + PPEName() + ".cnf", 0, 0
  27.     FGet 1, STRING004
  28.     FClose 1
  29.     PromptStr 574, STRING001, 12, Mask_Ascii(), 8 + 4 + 2
  30.     If (STRING001 == "") Then
  31.         Newlines 2
  32.         Stop
  33.     Endif
  34.     If (FileInf(STRING001, 9) == "") Then
  35.         STRING003 = ReadLine(PCBDat(), 96)
  36.         STRING001 = STRING001 + STRING003
  37.     Endif
  38.     STRING002 = " " + STRING001 + " " + "test"
  39.     Newline
  40.     PrintLn STRING004
  41.     DispStr "!" + PPEPath() + "upchk.ppe" + STRING002
  42.  
  43. ;------------------------------------------------------------------------------
  44. ;
  45. ; Usage report (before postprocessing)
  46. ;
  47. ; ■ Statements used :
  48. ;
  49. ;    2       Goto 
  50. ;    3       Let 
  51. ;    1       PrintLn 
  52. ;    2       If 
  53. ;    1       FOpen 
  54. ;    1       FClose 
  55. ;    1       FGet 
  56. ;    1       PromptStr 
  57. ;    1       Newline
  58. ;    1       Newlines 
  59. ;    1       Stop
  60. ;    1       DispStr 
  61. ;
  62. ;
  63. ; ■ Functions used :
  64. ;
  65. ;    11      +
  66. ;    2       ==
  67. ;    2       !
  68. ;    1       Mask_Ascii()
  69. ;    1       PCBDat()
  70. ;    2       PPEPath()
  71. ;    1       ReadLine()
  72. ;    1       FileInf()
  73. ;    1       PPEName()
  74. ;
  75. ;------------------------------------------------------------------------------
  76. ;
  77. ; Analysis flags : d
  78. ;
  79. ; d - Access PCBOARD.DAT ■ 2
  80. ;     Program gets the full pathname to PCBOARD.DAT, this may be usefull
  81. ;     for many PPE so they can find various informations on the system
  82. ;     (system paths, max number of lines in messages, ...) but it may also
  83. ;     be a way to gather vital informations.
  84. ;     ■ Search for : PCBDAT()
  85. ;
  86. ;------------------------------------------------------------------------------
  87. ;
  88. ; Postprocessing report
  89. ;
  90. ;    0       For/Next
  91. ;    0       While/EndWhile
  92. ;    2       If/Then or If/Then/Else
  93. ;    0       Select Case
  94. ;
  95. ;------------------------------------------------------------------------------
  96. ;                 AEGiS Corp - Break the routines, code against the machines!
  97. ;------------------------------------------------------------------------------
  98.