home *** CD-ROM | disk | FTP | other *** search
/ Bila Vrana / BILA_VRANA.iso / 019A / PCBDEMO.ZIP / PCBDISK1.EXE / RIP / PPE / SLCTCNF.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1993-01-01  |  1KB  |  95 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.     Int      INT001
  21.     Int      INT002
  22.  
  23. ;------------------------------------------------------------------------------
  24.  
  25.     INT002 = 1
  26.     For INT001 = 4 To 20
  27.         STRING001 = LTrim(ScrText(1, INT001, 5, 0), " ")
  28.         If (Len(STRING001) <> 0) Then
  29.             STRING001 = STRING001 + "^M"
  30.             MouseReg INT002, 1, INT001, 79, INT001 + 1, 8, 8, 1, 0, STRING001
  31.             INT002 = INT002 + 1
  32.         Endif
  33.     Next
  34.     DispFile PPEPath() + "SLCTCNF", 4 + 1
  35.     Gosub LABEL001
  36.     End
  37.     :LABEL001
  38.     FreshLine
  39.     PrintLn Chr(2), "|1", Chr(27), "0000$COFF$"
  40.     Return
  41.     FreshLine
  42.     PrintLn Chr(2), "|1", Chr(27), "0000$CON$"
  43.     Return
  44.  
  45. ;------------------------------------------------------------------------------
  46. ;
  47. ; Usage report (before postprocessing)
  48. ;
  49. ; ■ Statements used :
  50. ;
  51. ;    1       End
  52. ;    3       Goto 
  53. ;    6       Let 
  54. ;    2       PrintLn 
  55. ;    2       If 
  56. ;    1       DispFile 
  57. ;    1       Gosub 
  58. ;    2       Return
  59. ;    2       FreshLine
  60. ;    1       MouseReg 
  61. ;
  62. ;
  63. ; ■ Functions used :
  64. ;
  65. ;    6       +
  66. ;    1       <>
  67. ;    1       <
  68. ;    1       <=
  69. ;    2       >=
  70. ;    2       !
  71. ;    2       &&
  72. ;    1       ||
  73. ;    1       Len(
  74. ;    4       Chr()
  75. ;    1       LTrim()
  76. ;    1       PPEPath()
  77. ;    1       ScrText()
  78. ;
  79. ;------------------------------------------------------------------------------
  80. ;
  81. ; Analysis flags : No flag
  82. ;
  83. ;------------------------------------------------------------------------------
  84. ;
  85. ; Postprocessing report
  86. ;
  87. ;    1       For/Next
  88. ;    0       While/EndWhile
  89. ;    1       If/Then or If/Then/Else
  90. ;    0       Select Case
  91. ;
  92. ;------------------------------------------------------------------------------
  93. ;                 AEGiS Corp - Break the routines, code against the machines!
  94. ;------------------------------------------------------------------------------
  95.