home *** CD-ROM | disk | FTP | other *** search
- ;------------------------------------------------------------------------------
- ; .ss.
- ; `²²'
- ; .,sS$Ss,,s$ .,sS$$$Ss. .,sS$Ss,,s$ .ss. .sSs.
- ; .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
- ; $$$' .$$$' $$$²Sçsµ²' .$$$' .$$$'.$$$' .$$$' `$$b.
- ; $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$' ;$$$
- ; `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
- ; .sS²°$$$²²°"' d²°'
- ; .$$² .$$'
- ; $$$.,d$$'
- ; `²S$$S²'
- ;------------------------------------------------------------------------------
- ; P.P.L.X. 2.OO (C)1996 - Lone Runner / AEGiS CoRP'96
- ;------------------------------------------------------------------------------
- ; PPE 1.OO (plain) - Analysis ON - Postprocessing ON
- ;------------------------------------------------------------------------------
-
- String STRING001
- String STRING002
- String STRING003
- String STRING004
- String STRING005
- String STRING006
- String STRING007
- String STRING008
-
- ;------------------------------------------------------------------------------
-
- STRING008 = " 0123456789.,;abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
- PrintLn "@CLS@@X38┌─────────────────────────────────────────────────────────────────────────────@X3B┐@X07"
- PrintLn "@X38│ @X3EIn researching the BBS market we are interested in finding out where or how @X3B│@X07"
- PrintLn "@X38│ @X3Eyou learned of PCBoard software or this BBS. @X3B│@X07"
- PrintLn "@X38│ @X3B│@X07"
- PrintLn "@X38│ @X31If you could volunteer that information it would be appreciated. @X3B│@X07"
- PrintLn "@X38└@X3B─────────────────────────────────────────────────────────────────────────────┘@X07"
- PrintLn ""
- STRING001 = NoChar()
- InputYN "Have you seen our advertisement for PCBoard software in a magazine", STRING001, 14
- PrintLn
- If (Upper(Left(STRING001, 1)) <> YesChar()) Goto LABEL001
- InputStr "Which one", STRING002, 14, 60, STRING008, 2 + 64 + 128
- FPutLn 0, "Q: Which magazine?"
- FPut 0, "A: "
- FPutLn 0, STRING002
- :LABEL001
- PrintLn
- PrintLn "@X0EHow did you hear about PCBoard, or from whom? (2 lines)"
- Input "", STRING003
- PrintLn
- Input "", STRING004
- PrintLn
- FPutLn 0, "Q: Referral Line 1"
- FPut 0, "A: "
- FPutLn 0, STRING003
- FPutLn 0, "Q: Referral Line 2"
- FPut 0, "A: "
- FPutLn 0, STRING004
- STRING001 = NoChar()
- PrintLn
- InputYN "Do you currently run a BBS", STRING001, 14
- PrintLn
- If (Upper(Left(STRING001, 1)) <> YesChar()) Goto LABEL002
- InputStr "What software are you currently using", STRING005, 14, 30, STRING008, 2 + 64 + 128
- FPutLn 0, "Q: Current BBS Software"
- FPut 0, "A: "
- FPutLn 0, STRING005
- :LABEL002
- PrintLn
- PrintLn "@X0EWhat attracted you to PCBoard software? (2 lines)"
- Input "", STRING006
- PrintLn
- Input "", STRING007
- PrintLn
- FPutLn 0, "Q: Features Line 1"
- FPut 0, "A: "
- FPutLn 0, STRING006
- FPutLn 0, "Q: Features Line 2"
- FPut 0, "A: "
- FPutLn 0, STRING007
- PrintLn
- PrintLn "@X0FThank you for your responses."
- PrintLn
-
- ;------------------------------------------------------------------------------
- ;
- ; Usage report (before postprocessing)
- ;
- ; ■ Statements used :
- ;
- ; 2 Goto
- ; 3 Let
- ; 21 PrintLn
- ; 2 If
- ; 4 Input
- ; 6 FPut
- ; 12 FPutLn
- ; 2 InputStr
- ; 2 InputYN
- ;
- ;
- ; ■ Functions used :
- ;
- ; 4 +
- ; 2 <>
- ; 2 Upper()
- ; 2 Left()
- ; 2 NoChar()
- ; 2 YesChar()
- ;
- ;------------------------------------------------------------------------------
- ;
- ; Analysis flags : No flag
- ;
- ;------------------------------------------------------------------------------
- ;
- ; Postprocessing report
- ;
- ; 0 For/Next
- ; 0 While/EndWhile
- ; 0 If/Then or If/Then/Else
- ; 0 Select Case
- ;
- ;------------------------------------------------------------------------------
- ; AEGiS Corp - Break the routines, code against the machines!
- ;------------------------------------------------------------------------------
-