with
cString := FW_ArrayAsList( aImages, "|",.t. ) I have
I wish not have the "|||||" final
how i canr resolve ?
I tried to make
but I have the same result case-pc.jpg|cpu.jpg|monitor.jpg|
I need no separator at the end
cString := FW_ArrayAsList( aImages, "|",.t. ) I have
.\images\case-pc.jpg|.\images\cpu.jpg|.\images\monitor.jpg|||||how i canr resolve ?
I tried to make
cstring:=""
for n= 1 to len(aImages)
IF empty(aImages[n])
else
cstring+= UrlImage(aImages[n])
cstring+="|"
endif
nextI need no separator at the end
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com

