home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / NJOIN101.ZIP / NJOIN.PPE (.txt) < prev    next >
Encoding:
PCBoard Programming Language Executable  |  1993-07-12  |  1.2 KB  |  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.  
  21. ;------------------------------------------------------------------------------
  22.  
  23.     STRING001 = TokenStr()
  24.     If (Len(STRING001) > 0) Then
  25.         Goto LABEL002
  26.     Endif
  27.     :LABEL001
  28.     If (Exist(PPEPath() + "NWORK")) DispFile PPEPath() + "NWORK", 1 + 2 + 4
  29.     AnsiPos 0, 23
  30.     InputStr "Enter network # to view (Enter = None)", STRING001, 14, 2, "0123456789", 8192
  31.     If (STRING001 <= 0) End
  32.     If (STRING001 == 3) Then
  33.         STRING001 = 800
  34.     Else
  35.         If (Exist(PPEPath() + "CONF" + STRING001 + ".")) DispFile PPEPath() + "CONF" + STRING001 + ".", 1 + 2 + 4
  36.         AnsiPos 0, 23
  37.         STRING001 = ""
  38.         InputStr "Conference # to join (Enter)=none, (R)elist", STRING001, 14, 4, "0123456789Rr", 8192
  39.         If (Upper(STRING001) == "R") Then
  40.             Goto LABEL001
  41.         Endif
  42.         If (STRING001 <= 0) End
  43.     Endif
  44.     :LABEL002
  45.     Join STRING001
  46.     End
  47.  
  48. ;------------------------------------------------------------------------------
  49. ;
  50. ; Usage report (before postprocessing)
  51. ;
  52. ; ■ Statements used :
  53. ;
  54. ;    3       End
  55. ;    6       Goto 
  56. ;    3       Let 
  57. ;    7       If 
  58. ;    2       DispFile 
  59. ;    2       InputStr 
  60. ;    1       Join 
  61. ;    2       AnsiPos 
  62. ;
  63. ;
  64. ; ■ Functions used :
  65. ;
  66. ;    12      +
  67. ;    2       ==
  68. ;    2       <=
  69. ;    1       >
  70. ;    3       !
  71. ;    1       Len(
  72. ;    1       Upper()
  73. ;    4       PPEPath()
  74. ;    2       Exist()
  75. ;    1       TokenStr()
  76. ;
  77. ;------------------------------------------------------------------------------
  78. ;
  79. ; Analysis flags : No flag
  80. ;
  81. ;------------------------------------------------------------------------------
  82. ;
  83. ; Postprocessing report
  84. ;
  85. ;    0       For/Next
  86. ;    0       While/EndWhile
  87. ;    3       If/Then or If/Then/Else
  88. ;    0       Select Case
  89. ;
  90. ;------------------------------------------------------------------------------
  91. ;                 AEGiS Corp - Break the routines, code against the machines!
  92. ;------------------------------------------------------------------------------
  93.