home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / XBBS7200.ZIP / XBBS7200.TAR / MAKEquestion < prev    next >
Encoding:
Text File  |  1987-03-16  |  1.4 KB  |  49 lines

  1. This file contains the information needed to make your questionnaire.
  2. The following commands are available in column 1:
  3.  
  4. !       Output the rest of the line and wait for an input
  5. @       Output the rest of the line and send a crlf
  6. &       Same as '@' without the terminal crlf
  7. $       Outputs a '?' and waits for an input
  8. %       Output crlf
  9. Y || y  Output the rest of the line and set FLAG true if response is a Y or y
  10. N || n  Output the rest of the line and set FLAG true if response is an N or n
  11. {       Start conditional statements ( execute the following lines if FLAG
  12.         is equal to true
  13. }       End conditional statements
  14. /       Exit questionnaire - Normally used as a conditional statement
  15.  
  16.  
  17. An example of a questionnaire is as follows:
  18. @XBBS QUESTIONNAIRE
  19. NDo you want to continue the questionnaire (y/n)
  20. {
  21. /
  22. }
  23. !Input your full name
  24. !Input your home telephone number
  25. !Input your work telephone number
  26. &Input your full address ( 5 lines available )
  27. $
  28. $
  29. $
  30. $
  31. $
  32. !Input your profession
  33. @Thank you for answering my questionnaire
  34.  
  35.  
  36.  
  37. You may use the above example as your questionnaire.
  38.  
  39.  
  40. The file that you generate is called question.bbs and is located in the same
  41. directory as the rest of the .bbs files.
  42.  
  43. The file that is generated by the bbs software ( the answers to the
  44. questionnaire ) is called answer.bbs and is located in the same directory as
  45. question.bbs.
  46.  
  47.  
  48. Sandy
  49.