rbuser
Comments
-
nope, that put me on the right track. i created another pipeline that
used different set of keys for the one table that could have multiple
detatils. i also set a flag to know to know that when the master
traverses the actually … -
hi, well with several flags to track if a subreport has been printed and
additional subreports for each in the acct footer to print the no
data message it's beginning to look like the report we need. one other
question. one of… -
hi nico, thanks for being so patient. my problem is that a master
record only links to a single detail record. it takes several master
records for the same account to bring in all the details. it appears
the way i have my report… -
thanks very much. i apparantly had missed a shiftrelative and the 2nd
subreport was overlaying the detail of the first subreport - but not
it's title.
i have one further question i hope you can help me with. perhaps it's
hi thanks. that's getting me closer. however my problem now is that
the region isn't printing. since i'm relatively new at this (1 week)
i'm not sure if i using the best approach. in the subreport onprint i
check for the ppdaNo…that simple :-)
Thanks - works fine.
Hi, you could try to use the properti TOP of the subreport.
When the report goes to another pagem the TOP property saids wich is the
Top Heigh from where start transversing data , you can use this property to
your first subreport a…I'm only using the Header band in my DLS, if my DLS is set to
another band it is basically just a standard SubReport.
Here is a solution that works for me.
TmySubReport = Class(TppSubReport)
private
FSubReportL…This example is nice, and yes it is much simpler, but what
about the problem with the Dynamic Loading SubReports
causing an access violation.
I don't think I mentioned it but I'm using
Delphi 5
Report Builder Professio…I changed the band assignments, and all works fine.
I still have one problem, here is what I do to produce
the problem. I also tried this with the Dynamic Loading
SubReports demo and the problem occurs there as well.
…You were right about the events, all I needed to do is cycle through
the band.objects and assign the events to the appropriate object after
the report definition is loaded from stream.
Thanks for the additional info on the Bands…I scoured the help file for ways to access some sort of NoData property for
data pipelines and couldn't find anything so I started experimenting with
other things and found this to work:
SubReport1.Visible := True;
if…Thanks! Your advice worked. It probably should be noted that if anyone
is going to add more than one subreport to be sure to remember to set
the ShiftRelativeTo property to the previous subreport. Forgetting to do
so causes sone ve…Found a solution
Made a group footer and put the section subreports
in there.
--
Kind regards,
Nard Moseley (Digital Metaphors) wrote:
Thanks Nard for your reply. When I do it like you tell me will it
print in the correct order?
Because every department contains lots of people and the invoice has to
be p…Stijn Verrept wrote:
Oops I mean 50 msg up. ("Empty page instead of report").
--
Kind regards,
Stijn Verrept.
Hi Nard,
Thank you very much for your reply. This did the trick. I did not think of
the effect that this property would have on a detailband with mutiple
subreports.
Thanks you very much for your help!
Thanks for the suggestion, but "report emulation" isn't even close to
usable for things like wire service sports results. Report Emulation
truncates a lot of fields, and there are no delimiters.
What I really need is ideally t…In article <40ec312b$1@dm500.>, Nard Moseley (Digital Metaphors) wrote:
It is Master/Detail
pbChild
and yes, both Subreports have their own title
This will be the last solution.
I would p…thanks a lot Nico!
Thanks Nard for the info.
Jeff
Hi Nard,
I finally had some time to go over your suggestions you made below and I
have some questions.
1. If I remove the subreport from the band how am I supposed to use the
subreport since it's no longer in the report?
The only gotcha with many subreports even if invisible, is that all the
controls on the sub-report still get processed. I have a report with nearly
20 sub-reports with nearly a thousand db components within the report that
get update…Hi Nico,
I have try to implement your following method but in my detail bank I
could never 'see' any main report object. How do then do the update?
--
Best Regard
Jonathan Liaw
In article <40fd5624$1@dm500.>, "Nico Cizik \(Digital Metaphors\)"
In article <40fbcfb3$1@dm500.>, "Nico Cizik \(Digital Metaphors\)"
Thanks, I write my subselect in Expression area but I have got another
problem now. So,
Select m.workdate,
(select sum(totalprice) from my mytable2 where recordid = m.recordid )
from mytable m
in this que…Thanks a lot for your help.
I will try the different ways.
Cheers
Never mind.
I discovered a nice newsgroup named tech-tips ;o)
The answer is: header and footer do not work in pbchild-type reports
Hi,
first of all, thanks for your answer.
But I do not have any goups to add such an event.
I just have subreports. Where can I add instead of this the event like
"AfterGroupBreak".
The reason for that is, that …