home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / pcboard / ipstuff.zip / IPSTUFF.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1993-05-18  |  978b  |  73 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.  
  23. ;------------------------------------------------------------------------------
  24.  
  25.     InputText "     To (Enter)=abort", STRING001, 14, 25
  26.     Newline
  27.     If (Len(Trim(STRING001, " ")) == 0) End
  28.     InputText "Subject (Enter)=abort", STRING002, 14, 52
  29.     Newline
  30.     If (Len(Trim(STRING002, " ")) == 0) End
  31.     InputText "FidoNet Address (Enter)=abort", STRING003, 15, 20
  32.     Newline
  33.     If (Len(Trim(STRING003, " ")) == 0) End
  34.     KbdStuff "E^M" + STRING001 + "^M" + STRING002 + "^MR^M^M@>" + STRING003 + "^M"
  35.     End
  36.  
  37. ;------------------------------------------------------------------------------
  38. ;
  39. ; Usage report (before postprocessing)
  40. ;
  41. ; ■ Statements used :
  42. ;
  43. ;    4       End
  44. ;    3       If 
  45. ;    3       Newline
  46. ;    3       InputText 
  47. ;    1       KbdStuff 
  48. ;
  49. ;
  50. ; ■ Functions used :
  51. ;
  52. ;    6       +
  53. ;    3       ==
  54. ;    3       Len(
  55. ;    3       Trim()
  56. ;
  57. ;------------------------------------------------------------------------------
  58. ;
  59. ; Analysis flags : No flag
  60. ;
  61. ;------------------------------------------------------------------------------
  62. ;
  63. ; Postprocessing report
  64. ;
  65. ;    0       For/Next
  66. ;    0       While/EndWhile
  67. ;    0       If/Then or If/Then/Else
  68. ;    0       Select Case
  69. ;
  70. ;------------------------------------------------------------------------------
  71. ;                 AEGiS Corp - Break the routines, code against the machines!
  72. ;------------------------------------------------------------------------------
  73.