Print Arrays in Report -> Howto
Hi guys...
I have an array, which is of variable size, sometimes it may have 4 elements, sometimes 5, sometimes 1... but never 0, at least it will have 1 element.
How could i do to make a
for x := 1 to arraysize do
begin
ADDELEMENT_TO_REPORT
end;
And then, in the report I'd like to see the array's elements listed like:
Element1
Element2
Element3
if array has 3 elements, and so...
PS: How could i check if i need another page to continue printing array's elements...?
PS: Cannot use a table
Thanks a lot in advance.
I have an array, which is of variable size, sometimes it may have 4 elements, sometimes 5, sometimes 1... but never 0, at least it will have 1 element.
How could i do to make a
for x := 1 to arraysize do
begin
ADDELEMENT_TO_REPORT
end;
And then, in the report I'd like to see the array's elements listed like:
Element1
Element2
Element3
if array has 3 elements, and so...
PS: How could i check if i need another page to continue printing array's elements...?
PS: Cannot use a table
Thanks a lot in advance.
Comments