+x+x+xHi,
I want to have a question that asks participants to list 5 things with 5 separate textboxes. How can I do this?
Thank you
Define five <textbox> elements and display them on a <surveypage> per its /questions attrbute.
Thank you. I have the code here. How can I put these 2 questions on the same page because right now the question number for the last question is 9 instead of 5?
<dropdown sex>
/ caption = "Sex"
/ options = ("female", "male")
</dropdown>
<textbox age>
/ caption = "Age"
/ mask = positiveinteger
/ range = (9, 100)
</textbox>
<radiobuttons race>
/ caption = "Race"
/ options = ("American Indian/Alaska Native", "East Asian", "South Asian", "Native Hawaian or other Pacific Islander", "Black or African American", "White",
"More than one race - Black/White")
/ other = "Other"
</radiobuttons>
<textbox question01>
/ caption = "List 5 things that people do."
/ multiline = True
</textbox>
<textbox question02>
/ caption = ""
/ multiline = True
</textbox>
<textbox question03>
/ caption = ""
/ multiline = True
</textbox>
<textbox question04>
/ caption = ""
/ multiline = True
</textbox>
<textbox question05>
/ caption = ""
/ multiline = True
</textbox>
<textbox question2>
/ caption = "List 5 things that lonely people..."
</textbox>
<surveypage demographics1>
/ caption = "Please answer the following questions"
/ fontstyle = ("Verdana", -16, true, false, false, false, 5, 0)
/ questions = [1=sex; 2=age; 3=race; 4=question01; 4=question02; 4=question03; 4=question04; 4=question05; 5=question2]
</surveypage>
<survey demographics>
/ pages = [1=demographics1]
/ responsefontstyle = ("Verdana", -12, false, false, false, false, 5, 0)
/ itemfontstyle = ("Verdana", -13, false, false, false, false, 5, 0)
/ itemspacing = 2%
/ showpagenumbers = false
</survey>
Each <textbox> counts as a question, so the number of questions on that page is nine. If you don't want automatic quesiton numbering, turn it off per the /showquestionnumbers attribute and number the questions manually in their /caption attributes.
<dropdown sex>
/ caption = "1.) Sex"
/ options = ("female", "male")
</dropdown>
<textbox age>
/ caption = "2.) Age"
/ mask = positiveinteger
/ range = (9, 100)
</textbox>
<radiobuttons race>
/ caption = "3.) Race"
/ options = ("American Indian/Alaska Native", "East Asian", "South Asian", "Native Hawaian or other Pacific Islander", "Black or African American", "White",
"More than one race - Black/White")
/ other = "Other"
</radiobuttons>
<textbox question01>
/ caption = "4.) List 5 things that people do."
/ multiline = True
</textbox>
<textbox question02>
/ caption = ""
/ multiline = True
</textbox>
<textbox question03>
/ caption = ""
/ multiline = True
</textbox>
<textbox question04>
/ caption = ""
/ multiline = True
</textbox>
<textbox question05>
/ caption = ""
/ multiline = True
</textbox>
<textbox question2>
/ caption = "5.) List 5 things that lonely people..."
</textbox>
<surveypage demographics1>
/ caption = "Please answer the following questions"
/ fontstyle = ("Verdana", -16, true, false, false, false, 5, 0)
/ questions = [1=sex; 2=age; 3=race; 4=question01; 4=question02; 4=question03; 4=question04; 4=question05; 5=question2]
/ showquestionnumbers = false
</surveypage>
<survey demographics>
/ pages = [1=demographics1]
/ responsefontstyle = ("Verdana", -12, false, false, false, false, 5, 0)
/ itemfontstyle = ("Verdana", -13, false, false, false, false, 5, 0)
/ itemspacing = 2%
/ showpagenumbers = false
</survey>