rbuser
Comments
-
Hi,
my report contain some subreports. On designtime i do not know on which
page they will apear. Because there are tables in many of the supreports
which can be 2 rows long or 200 rows long. After printing subreport_1 RB
will… -
I don't know why the later didn't work but I modified the code to call the
ReportExplorer.LoadReport and it worked great???
Thank You Nico,
Branden Johnson
-
Thanks!!!
I loaded the two reorts into section style subreports and it works greate
from the report explorer. But when I call the report from code via a call
to Report.Template.LoadFromDatabase the report doesn't print any of t… -
I think I remember seeing a post a good ways back about printing the two
pages to memory and then collating them and then printing tham as a single
report?
Maybe this would work but I can't fin any info about it???
Th… -
Thanks For Replying,
All the objects are set to Visible = True by default and DO NOT PRINT based
on blank data. Assuming that visible is set to false within RB component,
at what point and which event during print processing … -
Nico
Cheers for the help. Putting them in a TppRegion worked great.
John
-
Hi Nico,
very strange. The example program I intend sending to you works now. I
don't know what's going on but actually it has nothing to with RB.
Thanks anyway.
Cheers
Martin Cremer
Hi Nico,
I'm using ReportBuilder 7.04 and Delphi 6.02. I send you a small example.
But the error occurs only in subreports not in main reports.
Cheers
Martin Cremer
Thanks Nard for the info....but I still cannot get it to work.
I did as 1. but I've changed 2. to ChildReport.NoDataBehaviors =
[ndBlankReport] becuase I want the sub-report to print even if it has no
data.
The page…Ok, I got the first sub-report header page to printed and the page
header and footer to print on every page. But, I still am not getting
the sub-report to print its data, even with the SkipOnNoRecords set to
FALSE. Also, it is pr…A little more info
I do have the ShiftRelativeTo set correctly according the visiblity of
the sub reports. Also, the main report does not have anything but the
header/footer bands, and the 7 sub-reports on the detail band.
Awesome, got the problem fixed. It was definitely the Shiftrelativeto but
checking visibility and setting the SRT in the Band.OnPrint was causing
havoc so moved check to OnOpen of DBPipe and was able to check and set
there. RE: r…How I did it....
in the Subreport - Detail - BeforePrint event I put the following
Detail.Visible :=DataPipeline1['ID'] = DataPipeline2['ID'];
Done!
Unfortunately this isn't an option because the DBPipelines are created at
runtime. And the report is loaded at runtime. Now if there was a way to
save the DBPipeline Client-Server mapping within the report this would work.
T…I have solved the problem, well sort of.
Instead of linking pipes in the master/detail relationship, I linked the
datasets.
And that helped to solbve the problem.
It must be something to do with pipes I guess.
<…Thank you for your help.
1) I am linking an Integer field so that should be OK.
2) OK, I will try this but I doubt it will help. As I mentioned I create a
new region/subreport B by copying and pasting region/subreport A a…It is ok but I am using RAP and I can't find any property so as
Report.Engine.Page etc. Is there an other alternative?
Thank You
That was it! Thank you very much. I was populating the key field in
one of the detail tables with the wrong value.
On Tue, 2 Nov 2004 10:47:22 -0700, "Nico Cizik \(Digital Metaphors\)"
Thanks Nico,
The DataPipelines are connected. The master pipeline is connected to
the TppReport Object, the 2 detail pipelines are connected to the two
sub reports which reside on the detail band. There is one group that
…Seems to me it would work... But then again... My problem is a little more
complicated. I'll try to explain it as well as I can.
At the moment, I'm building a report that "should" contain only 1
page(pre-printed labels). The…Thanks for the reply!
Unfortunately this solution will lead to a big lot of work, as there are
MANY reports that nee…The problem doesn't seem to be caused by the linking (I'm using Delphi Query
Linking). I have 2 reports in order to print both sides of the same paper.
The first report has 1 detail table and it prints fine. The 2? report has
all the …Thanks, It works.
Veridiana
I suggest to add a new group at your ppreport because i do and is perfect.
Regard?s
Frank
Nico,
Did you have a chance to look at the sample of this problem I sent to you
(to the address you specified)?
Thanks,
Ron
There is no data manipulation nor is there any event-handlers.
The only thing I noticed was the PrintBehavior was set to pbChild on the
ChildReports and the
PrintHeight for the sub-report detail bands was set to static. …
Thank you! It was my mistake :-s.
David Caouette
P.S: ReportBuilder is now our new standard for reporting. We're now
migrating every Crystal Report to ReportBuilder and conversion is going
pretty well. Our support for…I still have the problem:
between the two following lines:
AppReport := _ppVariable.Report;
lCodeModule := raGetCodeModule(AppReport);
I put the following piece of code:
if (AppReport is TppChildRepor…I found the problem :
in a sub-report, if I call
lCodeModule := raGetCodeModule(AppReport);
with AppReport as TppChildReport, lCodeModule returns nil. Is this an issue
in RB ?
David Caouette