home *** CD-ROM | disk | FTP | other *** search
-
- ; This is a sample questionnaire file intended ONLY as a visual
- ; example of how to set up two items that may be used with the
- ; RACE validation function.
- ;
- ; Obviously this questionnaire is far from a usable
- ; questionnaire though it is a working example.
-
-
- ClearScreen
- Display "||Street Address or Box Number : "
- Ask 60 1
-
- Display "|City, State : "
- Ask 60 2
-
- Display "|Home Phone : "
- Ask 15 3
-
- Display "|Your BBS phone number : "
- Ask 15 4
-
- Display "|Your Net/Node number(s) : "
- Ask 20 5
-
- PostInfo
- OutputAnswer "Address : " 1
- OutputAnswer "City,St : " 2
- OutputAnswer "H-Phone : " 3
- OutputAnswer "SysNumber &: " 4
- OutputAnswer "Net/Node &: " 5
-
- ; Note that POSTINFO is the first item RemoteAccess will place in
- ; the questionnaire answer file. This will provide the user name
- ; that RACE will need to locate and use the answers.
- ;
- ; The last two 'Outputanswer' items contain the '&:' mentioned in the
- ; RACE documentation. This two character combination will signal RACE
- ; that all info after these characters is to be imported into the user
- ; record comment field when you upgrade this user.
- ;
- ; In the case of this example, the user's System (bbs) number and
- ; Net/node number would be imported. The "SysNumber" and "Net/Node"
- ; text would not be imported into the comment field. To do so, the
- ; two characters "&:" would have to be placed BEFORE the text, like so:
-
- OutputAnswer "&:SysNumber " 4
- OutputAnswer "&:Net/Node " 5
-
-
-