Tuesday
I would like to use Arrays, but when shown in the UI, it seems you can only show the full Array:
Can you show and edit a single array item?
Thanks,
Jeroen
Solved! Go to Solution.
Tuesday
I would use a loop, if you need to list all the rows at ones use vardim.
yUI=5
for i = 1 to vardim1(array1)
ui_infield{2} array1[i][1], 5, yUI, 90, 15
yUI= yUI+25
next i
ofc you can use your own variable to control the number of rows you want
Tuesday
I would use a loop, if you need to list all the rows at ones use vardim.
yUI=5
for i = 1 to vardim1(array1)
ui_infield{2} array1[i][1], 5, yUI, 90, 15
yUI= yUI+25
next i
ofc you can use your own variable to control the number of rows you want
Tuesday
Thanks a lot Domagoj!