home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / ra / race202.zip / SAMPLE.Q-A < prev    next >
Text File  |  1993-02-27  |  2KB  |  52 lines

  1.  
  2. ; This is a sample questionnaire file intended ONLY as a visual
  3. ; example of how to set up two items that may be used with the
  4. ; RACE validation function.
  5. ;
  6. ; Obviously this questionnaire is far from a usable
  7. ; questionnaire though it does work.
  8.  
  9. ClearScreen
  10. Display "||Street Address or Box Number : "
  11. Ask 60 1
  12.  
  13. Display "|City, State : "
  14. Ask 60 2
  15.  
  16. Display "|Home Phone : "
  17. Ask 15 3
  18.  
  19. Display "|Your BBS phone number : "
  20. Ask 15 4
  21.  
  22. Display "|Your Net/Node number(s) : "
  23. Ask 20 5
  24.  
  25. POSTINFO
  26. OutputAnswer "Address    : " 1
  27. OutputAnswer "City,St    : " 2
  28. OutputAnswer "H-Phone    : " 3
  29. OutputAnswer "SysNumber &: " 4
  30. OutputAnswer "Net/Node  &: " 5
  31.  
  32. ; Note that POSTINFO is the first item RemoteAccess will place in
  33. ; the questionnaire answer file.  This will provide the user name
  34. ; that RACE will need to locate and use the answers.
  35. ;
  36. ; The last two 'Outputanswer' items contain the '&:' mentioned in the
  37. ; RACE documentation.  This two character combination will signal RACE
  38. ; that all info after these characters is to be imported into the user
  39. ; record comment field when you upgrade this user.
  40. ;
  41. ; In the case of this example, the user's System (bbs) number and
  42. ; Net/node number would be imported.  The "SysNumber" and "Net/Node"
  43. ; text would not be imported into the comment field.  To do so, the
  44. ; two characters "&:" would have to be placed BEFORE the text, like so:
  45.  
  46. ; OutputAnswer "&:SysNumber " 4
  47. ; OutputAnswer "&:Net/Node " 5
  48.  
  49.  
  50.                             *** EOF ***
  51.  
  52.