Hi,
My offline version work correctly.
Online, the choice of two questions don't appear.
When I tried to select a choice, in the dowpdown, it's blank (I see the box, but i cannot select a choice).
This is the script. The two question are dropdown sexe and dropdown vision
<text introduction>
/ items = ("Veuillez répondre aux questions suivantes")
/ position = (50, 10)
/ color = (0, 0, 0)
/ txbgcolor = (255,255,255)
/ fontstyle = ("Arial", 20pt)
/ erase = false
</text>
<dropdown ouinon>
/ caption = "Oui ou Non"
/ options = ("Oui", "Non")
</dropdown>
<dropdown sexe>
/ caption = "Sexe"
/ options = ("Homme", "Femme")
/ optionvalues = ("1", "2")
</dropdown>
<textbox age>
/ caption = "Âge"
/ mask = positiveinteger
/ range = (7, 110)
</textbox>
<dropdown langue>
/ caption = "Langue Maternelle"
/ options = ("Français", "Anglais", "Autre")
/ optionvalues = ("1", "2", "3")
</dropdown>
<dropdown education>
/ caption = "Niveau d'éducation complété"
/ options = ("Secondaire", "Collégial", "Universitaire", "Autre")
/ optionvalues = ("1", "2", "3", "0",)
</dropdown>
<dropdown vision>
/ caption = "Avez-vous une vision corrigée?"
/ options = ("Non, je ne porte pas de lentilles","Oui, avec lentilles (lunettes ou verres de contacts, etc)")
/ optionvalues = ("1", "2")
</dropdown>
<textbox residence>
/ caption = "Pays de résidence"
</textbox>
Thanks for your help,