cString := FW_ArrayAsList( aImages, "|",.t. ) I have
- Code: Select all Expand view
- .\images\case-pc.jpg|.\images\cpu.jpg|.\images\monitor.jpg|||||
I wish not have the "|||||" final
how i canr resolve ?
I tried to make
- Code: Select all Expand view
- cstring:=""
for n= 1 to len(aImages)
IF empty(aImages[n])
else
cstring+= UrlImage(aImages[n])
cstring+="|"
endif
next
but I have the same result case-pc.jpg|cpu.jpg|monitor.jpg|
I need no separator at the end