home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Beijing Paradise BBS Backup
/
PARADISE.ISO
/
software
/
BBSDOORW
/
URD102B.ZIP
/
EXAMPLE1.ZIP
/
URD.Q01
< prev
Wrap
Text File
|
1993-05-15
|
7KB
|
261 lines
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
; Example Question and Language file for User Registration Door 1.02b
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
; Keyword : STARTSCREEN
; Purpose : The name of the ASCII, ANSI or Avatar file that will be
; displayed before URD will ask the user if he/she wants to
; answer the questionnaire.
; DON'T INCLUDE AN EXTENSION !!!
StartScreen = URD_STRT
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
; Keyword : BACKSCREEN
; Purpose : The name of the ASCII, ANSI or Avatar file that will be
; displayed as a background screen under your questionnaire.
; DON'T INCLUDE AN EXTENSION !!!
BackScreen = URD_BACK
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
; Keyword : ENDSCREEN
; Purpose : The name of the ASCII, ANSI or Avatar file that will be
; displayed after the user has completed the questionnaire.
; DON'T INCLUDE AN EXTENSION !!!
EndScreen = URD_END
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
; Keyword : NOTANSWEREDSCREEN
; Purpose : The name of the ASCII, ANSI or Avatar file that will be
; displayed if the user don't want to answer the questionnaire.
; DON'T INCLUDE AN EXTENSION !!!
NotAnsweredScreen = URD_NOT
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
; Keyword : STARTQUESTION
; Purpose : The start of the section that defines the question that will
; be prompted to the user if he/she wants to answer your
; questionnaire. The section is ended with an END statement.
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
; The following keywords are available :
;
; X - Colum where the first character of the question has to be
; placed.
; Y - Row of the first character of the question
; Question - Defines the question which will be asked.
StartQuestion
X = 6
Y = 20
Question = `A112:Do you want the answer the new-user questionnaire
End
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
; Keyword : SAVEANSWERTEXT
; Purpose : This string will be showed to the user when his answers are
; saved. It will be centered in the middle of the screen on the
; bottom line. Default color is 15 (bright white)
SaveAnswerText = Saving your answers. Please hold....
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
; Keyword : MUSTANSWERTEXT
; Purpose : This string will be displayed when the user hasn't answered all
; questions you wanted him to answer as defined with the
; 'MustAnswer = Yes' keyword in the question section.
; Default color is 12 (bright red)
MustAnswerText = You `A15:MUST`A12: answer the `A15:first 6`A12: questions !
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
; The following section defines the questions which will be asked to the
; user. The general format of a question is :
;
; BEGIN
; Keyword = xx
; .
; .
; Keyword = xx
; END
;
; The following keywords are available :
;
; X - Colum where the first character of the question has to be
; placed.
; Y - Row of the first character of the question
; ValidChar - Digit in the range from 0 to 6. This digit defines which
; characters the user may enter, meaning :
;
; 0 = All printable characters
; 1 = Characters and digits
; 2 = Characters only
; 3 = Digits only
; 4 = Digits and '+', '-' (useful for phonenumbers)
; 5 = Digits and '-', '/' (useful for date of birth)
; 6 = First four places digits only (useful for postal
; codes or zipcodes. Check not implemented yet !)
;
; PreAnswer - Digit in the range from 0 to 6. This digit defines the
; answer UserReg has to fill in as a default answer. This is
; easier for the users, because they only have to press
; ENTER to confirm. The meaning of the digits is :
;
; 0 = Nothing
; 1 = Name
; 2 = Location
; 3 = Dataphone
; 4 = Voicephone
; 5 = Handle
; 6 = Birthdate
; 7 = Communication Program used by the user (IEMSI only)
;
; AnswerLength - Defines the length of the answerfield
; Question - Defines the question which will be asked.
;
; Some of the keywords can also be used global. This means that they will
; take affect on all questions defined under the keyword. This can save
; you a lot of typing and UserReg will have less to read when the user is
; on-line. The keywords that can be used global are :
;
; MustAnswer
; AnswerColor
; EditFieldColor
;
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
; Global Keywords
MustAnswer = Yes
AnswerColor = 120
EditFieldColor = 15
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
; The following section defines the questions ask to the user
Begin
X = 11
Y = 5
ValidChar = 1
PreAnswer = 1
AnswerLength = 35
Question = `A112:Name :
End
Begin
X = 8
Y = 6
ValidChar = 1
PreAnswer = 0
AnswerLength = 41
Question = `A112:Address :
End
Begin
X = 8
Y = 7
ValidChar = 6
PreAnswer = 0
AnswerLength = 7
Question = `A112:Zipcode :
End
Begin
X = 11
Y = 8
ValidChar = 1
PreAnswer = 2
AnswerLength = 41
Question = `A112:City :
End
Begin
X = 4
Y = 9
ValidChar = 4
PreAnswer = 4
AnswerLength = 12
Question = `A112:Voice Phone :
End
Begin
X = 5
Y = 10
ValidChar = 4
PreAnswer = 3
AnswerLength = 12
Question = `A112:Data Phone :
End
; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
; Again a global keyword that only affects the questions below it
MustAnswer = No
Begin
X = 4
Y = 13
ValidChar = 0
PreAnswer = 0
AnswerLength = 52
Question = `A112:Computer Type/Brand :
End
Begin
X = 7
Y = 14
ValidChar = 0
PreAnswer = 0
AnswerLength = 52
Question = `A112:Modem Type/Brand :
End
Begin
X = 4
Y = 15
ValidChar = 0
PreAnswer = 0
AnswerLength = 52
Question = `A112:Maximum Modem Speed :
End
Begin
X = 8
Y = 19
ValidChar = 0
PreAnswer = 0
AnswerLength = 56
Question = `A112:Name of BBS :
End
Begin
X = 14
Y = 20
ValidChar = 4
PreAnswer = 0
AnswerLength = 12
Question = `A112:Phone :
End
Begin
X = 9
Y = 21
ValidChar = 0
PreAnswer = 0
AnswerLength = 56
Question = `A112:Nodenumber :
End
; <EOF>