home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / vrac / whocapps.zip / BILLINFO.PPE (.txt) next >
PCBoard Programming Language Executable  |  1994-06-04  |  1KB  |  92 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.     STRING003 = GetEnv("WHOHOME")
  27.     STRING002 = STRING003 + "\whoinfo." + String(PcbNode())
  28.     STRING004 = STRING003 + "\whoinfo.hdr"
  29.     FOpen 1, STRING004, 0, 0
  30.     :LABEL001
  31.     If (Ferr(1)) Goto LABEL002
  32.     FGet 1, STRING001
  33.     PrintLn STRING001
  34.     Goto LABEL001
  35.     :LABEL002
  36.     FClose 1
  37.     FOpen 1, STRING002, 0, 0
  38.     If (Ferr(1)) Then
  39.         PrintLn "Error!, Exiting!"
  40.         End
  41.     Endif
  42.     :LABEL003
  43.     If (Ferr(1)) Goto LABEL004
  44.     FGet 1, STRING001
  45.     PrintLn STRING001
  46.     Goto LABEL003
  47.     :LABEL004
  48.     FClose 1
  49.     End
  50.  
  51. ;------------------------------------------------------------------------------
  52. ;
  53. ; Usage report (before postprocessing)
  54. ;
  55. ; ■ Statements used :
  56. ;
  57. ;    2       End
  58. ;    5       Goto 
  59. ;    3       Let 
  60. ;    3       PrintLn 
  61. ;    3       If 
  62. ;    2       FOpen 
  63. ;    2       FClose 
  64. ;    2       FGet 
  65. ;
  66. ;
  67. ; ■ Functions used :
  68. ;
  69. ;    3       +
  70. ;    3       !
  71. ;    3       Ferr()
  72. ;    1       String()
  73. ;    1       PcbNode()
  74. ;    1       GetEnv()
  75. ;
  76. ;------------------------------------------------------------------------------
  77. ;
  78. ; Analysis flags : No flag
  79. ;
  80. ;------------------------------------------------------------------------------
  81. ;
  82. ; Postprocessing report
  83. ;
  84. ;    0       For/Next
  85. ;    0       While/EndWhile
  86. ;    1       If/Then or If/Then/Else
  87. ;    0       Select Case
  88. ;
  89. ;------------------------------------------------------------------------------
  90. ;                 AEGiS Corp - Break the routines, code against the machines!
  91. ;------------------------------------------------------------------------------
  92.