rbuser
Comments
-
-
SubReport is correctly linke to same DBPipeline as FIRST page (main Report).
-
I tried setting SubReport.PrintBehavior to all three possible values
pbChild, pbSection, pbFixed
But none of them fixes blank page problem. No data is printed from
SubReport.
Ashok
-
I have too many fields in one table. So it does not fit in one page.
With this one record, I want some fields to print on first page .
I want remaining fields to print in SubReport (second page).
BTW I cannot use ODD, EVEN p… -
I have too many fields in one table. So it does not fit in one page.
With this one record, I want some fields to print on Odd page #.
I want remaining fields to print in SubReport.
Or if there is another way to accomplish same … -
That's good, but
in my situation, both detail bands must have different (things to print,
different format, different shape, lines, etc.) fields.
I think I coud use this technique only if I am using the same Detail band.
Is… -
I have total of 911 components on one page.
Could you test it with over 975 components
including # of boxes, DBText, Labels, etc.?
Thanks,
Ashok
-
I was main concerned about why my Subreport was
not printing.
And my doubt about PageStyle was correct
I moved all components from Page Style to
Detail Band
And now SubReport prints.
BTW, is ther… -
Nard Moseley,
That problem is solved by fixing Page Height.
Ashok
-
Never mind. This problem is solved.
I had to remove DBPipeline for Parent Report.
Thanks,
Ashok
-
Hi Nico Cizik
Thanks for your answer. I have tried to place the subreport in header
band and it works. I couldn't get the detail band work the way I want.
Jonathan Liaw
-
That's it, thanks for your help.
Regards
Guido
-
Nico Cizik (Digital Metaphors) wrote:
I think, you meant
procedure TForm1.MainReportStartPage(Sender: TObject);
begin
if (MainReport.SecondPass) and (ChildReport.PageNo > 1) then
ppRegion1.Visible := False… -
The ppLabel is just for testing. As I mentioned in my first mail, I want
, that when the ChildReport has more than one page, the customer address
should be made invisible from the second oage on. Therefore I have a
region 'customer… -
> Sorry, I missed that you were using the BeforePrint event. Instead of using
I'm not really sure, what you mean. Here's what I have done:
procedure TForm1.MainReportStartPage(Sender: TObject);
begin
if … -
> Make sure your report has its PassSetting property set to psTwoPass. This
I have set PassSetting to psTwoPass, but in the BeforePrint-Event I get
always AbsolutePageCount=1.
Regards
Guido
-
Hi Nico Cizik,
I am not sure I can get the number of page for particular record as I
mentioned in my earlier question. You see, for each record, it might take
several page and I need to know the total number of page for this re… -
Hi Nico,
Thanks for your response. As a test I've deleted the title and footer bands
just leaving the group bands and the empty detail band.
If I put the subreports in the detail band they simply don't show at all.
Th… -
Nard,
Sorry for sounding so short. Have been under the thumb for this one.
-
Okay Digital-metaphors,
I got it wired together on my own.
Thanks for all your assistance for our > 20 Report Builder/Server Licenses.
-
Thanks Nard,
You the coolest!
-
Nard,
I have a same problem but version of my RB is 6.02. I need re-compile the
dclrb55.dpk?
Does not necessary reinstall RB?
Gustavo
-
Wonderful! Thanks!
-
I need print only some summaries after every group, but without group
header. Group header I want print every times, when the some part of detail
(on detail band is only one subreport) is on the page. But if on the page is
only gro… -
I got it working and wanted to thank you again for your help.
Charles
-
Hi Nico,
Before proceeding in code, in the designer I am playing with a report that
contains two pbsection subreports. I can't get the report's summary band
tppvariable to update in other than dtString, and the component does… -
Thanks for your quick reply. I see I can add a varying number of pbSection
subreports in code, with dbCalc in the summary band. I like it. Adding a
dbCalc to the parent report yeilds zero as the grand total, and I wonder if
I am… -
"Nico Cizik (Digital Metaphors)" wrote
-
Also, if you want to get only the subreports for the current report level,
use TppReport.GetFirstLevelSubReports. I use this routine recursively to set
my Pipelines at run-time.
David
-
thanks!