I think you'll end up using a trick:
1) Create a Text Object only consisting of periods.
2) Put that one the report
3) Put the reporting field on top of it (you might have to put it a little more to the right, otherwise it will be embedded into the text object).
4) Set the background of this...
For Paradox tables we created something like this:
// tables in mainreport
for cnt := 0 to (Tables.Count - 1) do
begin
Crpe1.Tables[cnt].Name := NAME + '.db';
Crpe1.Tables[cnt].Path := LOCATION;
end;
// And tables in subreports
for cnt := 0 to (Crpe1.Subreports.Count - 1) do
begin
for i...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.