Mi problema es el siguiente:
Esoty almacenando en una variable una serie de datos.Estos datos quiero que se me presenten en pantalla en forma de lista esto es cada dato en una linea diferente. Pero esto no me ocurre y me presenta los datos todos seguidos. Tengo que decir que la manera de presentar los datos los hago mediante una combinacion de HTML y LINGO.
Alguien sabe la respuesta?
Aqui les dejo el cogigo del Handler
on hacertabla nombremiembro,headings,widths,data
htmltext = "<html><body bgcolor=ffffff>"
put "<table border=0><tr>" after htmltext
repeat with i = 1 to count (headings)
put "<th width="&widths[I]&">" after htmltext
put "<b>"&headings[i]&"</b></td>" after htmltext
end repeat
put "</tr>" after htmltext
repeat with i = 1 to count(data)
put "<tr>" after htmltext
repeat with j = 1 to count(data[i])
put "<tr>" after htmltext
put data[j]&"</tr>" after htmltext
end repeat
put "</tr>" after htmltext
end repeat
put "</table></body></html>" after htmltext
member(nombremiembro).html = htmltext
end
on testtabla
headings =[gName&&"Deze zijn jouw goede antwoord"]
widths = [400]
data = []
add data,glista
hacertabla ("Respuestasbuenas",headings, widths, data)
end
Donde glista es la variable que almacena los datos
Muchas gracias y espero si alguien lo sabe que conteste rapido pues me urge.