home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / ra / urd102b.zip / EXAMPLE1.ARJ / URD.Q01 < prev   
Text File  |  1993-05-15  |  7KB  |  261 lines

  1. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  2. ;  Example Question and Language file for User Registration Door 1.02b
  3. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  4.  
  5. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  6. ; Keyword : STARTSCREEN
  7. ; Purpose : The name of the ASCII, ANSI or Avatar file that will be
  8. ;           displayed before URD will ask the user if he/she wants to
  9. ;           answer the questionnaire.
  10. ;           DON'T INCLUDE AN EXTENSION !!!
  11.  
  12. StartScreen = URD_STRT
  13.  
  14.  
  15. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  16. ; Keyword : BACKSCREEN
  17. ; Purpose : The name of the ASCII, ANSI or Avatar file that will be
  18. ;           displayed as a background screen under your questionnaire.
  19. ;           DON'T INCLUDE AN EXTENSION !!!
  20.  
  21. BackScreen = URD_BACK
  22.  
  23.  
  24. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  25. ; Keyword : ENDSCREEN
  26. ; Purpose : The name of the ASCII, ANSI or Avatar file that will be
  27. ;           displayed after the user has completed the questionnaire.
  28. ;           DON'T INCLUDE AN EXTENSION !!!
  29.  
  30. EndScreen = URD_END
  31.  
  32.  
  33. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  34. ; Keyword : NOTANSWEREDSCREEN
  35. ; Purpose : The name of the ASCII, ANSI or Avatar file that will be
  36. ;           displayed if the user don't want to answer the questionnaire.
  37. ;           DON'T INCLUDE AN EXTENSION !!!
  38.  
  39. NotAnsweredScreen = URD_NOT
  40.  
  41.  
  42. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  43. ; Keyword : STARTQUESTION
  44. ; Purpose : The start of the section that defines the question that will
  45. ;           be prompted to the user if he/she wants to answer your
  46. ;           questionnaire. The section is ended with an END statement.
  47. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  48. ; The following keywords are available :
  49. ;
  50. ; X            - Colum where the first character of the question has to be
  51. ;                placed.
  52. ; Y            - Row of the first character of the question
  53. ; Question     - Defines the question which will be asked.
  54.  
  55. StartQuestion
  56.   X = 6
  57.   Y = 20
  58.   Question = `A112:Do you want the answer the new-user questionnaire
  59. End
  60.  
  61.  
  62. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  63. ; Keyword : SAVEANSWERTEXT
  64. ; Purpose : This string will be showed to the user when his answers are
  65. ;           saved. It will be centered in the middle of the screen on the
  66. ;           bottom line. Default color is 15 (bright white)
  67.  
  68. SaveAnswerText = Saving your answers. Please hold....
  69.  
  70.  
  71. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  72. ; Keyword : MUSTANSWERTEXT
  73. ; Purpose : This string will be displayed when the user hasn't answered all
  74. ;           questions you wanted him to answer as defined with the
  75. ;           'MustAnswer = Yes' keyword in the question section.
  76. ;           Default color is 12 (bright red)
  77.  
  78. MustAnswerText = You `A15:MUST`A12: answer the `A15:first 6`A12: questions !
  79.  
  80.  
  81. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  82. ; The following section defines the questions which will be asked to the
  83. ; user. The general format of a question is :
  84. ;
  85. ; BEGIN
  86. ;   Keyword = xx
  87. ;   .
  88. ;   .
  89. ;   Keyword = xx
  90. ; END
  91. ;
  92. ; The following keywords are available :
  93. ;
  94. ; X            - Colum where the first character of the question has to be
  95. ;                placed.
  96. ; Y            - Row of the first character of the question
  97. ; ValidChar    - Digit in the range from 0 to 6. This digit defines which 
  98. ;                characters the user may enter, meaning :
  99. ;
  100. ;                  0 = All printable characters
  101. ;                  1 = Characters and digits
  102. ;                  2 = Characters only
  103. ;                  3 = Digits only
  104. ;                  4 = Digits and '+', '-' (useful for phonenumbers)
  105. ;                  5 = Digits and '-', '/' (useful for date of birth)
  106. ;                  6 = First four places digits only (useful for postal
  107. ;                      codes or zipcodes. Check not implemented yet !)
  108. ;
  109. ; PreAnswer    - Digit in the range from 0 to 6. This digit defines the
  110. ;                answer UserReg has to fill in as a default answer. This is
  111. ;                easier for the users, because they only have to press
  112. ;                ENTER to confirm. The meaning of the digits is :
  113. ;
  114. ;                  0 = Nothing
  115. ;                  1 = Name
  116. ;                  2 = Location
  117. ;                  3 = Dataphone
  118. ;                  4 = Voicephone
  119. ;                  5 = Handle
  120. ;                  6 = Birthdate
  121. ;                  7 = Communication Program used by the user (IEMSI only)
  122. ;
  123. ; AnswerLength - Defines the length of the answerfield
  124. ; Question     - Defines the question which will be asked.
  125. ;
  126. ; Some of the keywords can also be used global. This means that they will
  127. ; take affect on all questions defined under the keyword. This can save
  128. ; you a lot of typing and UserReg will have less to read when the user is
  129. ; on-line. The keywords that can be used global are :
  130. ;   MustAnswer
  131. ;   AnswerColor
  132. ;   EditFieldColor
  133. ;
  134.  
  135.  
  136. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  137. ; Global Keywords
  138.  
  139. MustAnswer = Yes
  140. AnswerColor = 120
  141. EditFieldColor = 15
  142.  
  143.  
  144. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  145. ; The following section defines the questions ask to the user
  146.  
  147. Begin
  148.   X = 11
  149.   Y = 5
  150.   ValidChar = 1
  151.   PreAnswer = 1
  152.   AnswerLength = 35
  153.   Question = `A112:Name :
  154. End
  155.  
  156. Begin
  157.   X = 8
  158.   Y = 6
  159.   ValidChar = 1
  160.   PreAnswer = 0
  161.   AnswerLength = 41
  162.   Question = `A112:Address :
  163. End
  164.  
  165. Begin
  166.   X = 8
  167.   Y = 7
  168.   ValidChar = 6
  169.   PreAnswer = 0
  170.   AnswerLength = 7
  171.   Question = `A112:Zipcode :
  172. End
  173.  
  174. Begin
  175.   X = 11
  176.   Y = 8
  177.   ValidChar = 1
  178.   PreAnswer = 2
  179.   AnswerLength = 41
  180.   Question = `A112:City :
  181. End
  182.  
  183. Begin
  184.   X = 4
  185.   Y = 9
  186.   ValidChar = 4
  187.   PreAnswer = 4
  188.   AnswerLength = 12
  189.   Question = `A112:Voice Phone :
  190. End
  191.  
  192. Begin
  193.   X = 5
  194.   Y = 10
  195.   ValidChar = 4
  196.   PreAnswer = 3
  197.   AnswerLength = 12
  198.   Question = `A112:Data Phone :
  199. End
  200.  
  201. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  202. ; Again a global keyword that only affects the questions below it
  203.  
  204. MustAnswer = No
  205.  
  206. Begin
  207.   X = 4
  208.   Y = 13
  209.   ValidChar = 0
  210.   PreAnswer = 0
  211.   AnswerLength = 52
  212.   Question = `A112:Computer Type/Brand :
  213. End
  214.  
  215. Begin
  216.   X = 7
  217.   Y = 14
  218.   ValidChar = 0
  219.   PreAnswer = 0
  220.   AnswerLength = 52
  221.   Question = `A112:Modem Type/Brand :
  222. End
  223.  
  224. Begin
  225.   X = 4
  226.   Y = 15
  227.   ValidChar = 0
  228.   PreAnswer = 0
  229.   AnswerLength = 52
  230.   Question = `A112:Maximum Modem Speed :
  231. End
  232.  
  233. Begin
  234.   X = 8
  235.   Y = 19
  236.   ValidChar = 0
  237.   PreAnswer = 0
  238.   AnswerLength = 56
  239.   Question = `A112:Name of BBS :
  240. End
  241.  
  242. Begin
  243.   X = 14
  244.   Y = 20
  245.   ValidChar = 4
  246.   PreAnswer = 0
  247.   AnswerLength = 12
  248.   Question = `A112:Phone :
  249. End
  250.  
  251. Begin
  252.   X = 9
  253.   Y = 21
  254.   ValidChar = 0
  255.   PreAnswer = 0
  256.   AnswerLength = 56
  257.   Question = `A112:Nodenumber :
  258. End
  259.  
  260. ; <EOF>