Im using crystal reports 8.5 . In the Detail section of the report im creating a string, which i concatenate with each record
eg
SHARED STRINGVAR NAMES;
NAMES := NAMES + {TABLE.NAME} + ", ";
Then i print the values in the report footer. The problem i run into is when the length of the string > 254, then i get an error.
I was thinking of using an Array to do this. Can anyone show me how i should proceed with this ( How to Print an Array ??)
Any help is appreciated.
eg
SHARED STRINGVAR NAMES;
NAMES := NAMES + {TABLE.NAME} + ", ";
Then i print the values in the report footer. The problem i run into is when the length of the string > 254, then i get an error.
I was thinking of using an Array to do this. Can anyone show me how i should proceed with this ( How to Print an Array ??)
Any help is appreciated.