crystalreport85
Programmer
thread767-367436
I am trying to print all the values(more then 254) from the array at a time. I am using crystal report 8.5
I used the following code of synapsevampire from the thread thread767-367436
whileprintingrecords;
stringvar array MyArray := {?a}; //your array
stringvar MyOutPut;
numbervar x;
for x := 1 to 7 do(
MyOutPut := MyOutPut+MyArray[x]+chr(13)
);
MyOutPut
I get this error --'A string can be at most 254 character's long '
How to print values more then 200
I am trying to print all the values(more then 254) from the array at a time. I am using crystal report 8.5
I used the following code of synapsevampire from the thread thread767-367436
whileprintingrecords;
stringvar array MyArray := {?a}; //your array
stringvar MyOutPut;
numbervar x;
for x := 1 to 7 do(
MyOutPut := MyOutPut+MyArray[x]+chr(13)
);
MyOutPut
I get this error --'A string can be at most 254 character's long '
How to print values more then 200