as in subject, I'm trying to show item 1 of all the lines of data from query into a scrolling list field.
the data back from query are 2 items, column "DOMANDA" and column "RISPOSTA"
I only am able to show all the 2 items so:
Code: Select all
set ItemDel to TAB
put tRsTrovaDom into field "txtDomTrovate"
Code: Select all
set ItemDel to TAB
put item 1 of tRsTrovaDom into field "txtDomTrovate"
another try:
Code: Select all
repeat for each line i in tRsTrovaDom
put item 1 of line i of tRsTrovaDom into field "txtDomTrovate" -- item 1 contiene la domanda
end repeat
"card "crdDomAperte": execution error at line 93 (Chunk: error in range start expression), char 1"
thanks for help
franco