nicocizik
Comments
-
Hi Paul,
Sorry for the delay.
If I understand correctly, you are dynamically switching which subreport is
shown when the label is clicked based on some user input? Is there ever a
case where both subreports will be… -
Hi Paul,
Sorry for the delay in this response. My newsreader somehow lost track of
your reply.
The ExpandAll property will only affect the detail bands below the current
on being generated. This allows you to set … -
Hi Paul,
You can use the TppSubreport.ExpandAll property to individually expand
specific data at run time. Setting this property to True will expand the
given subreport.
--
Regards,
Nico Cizik
Hi Jim,
Looking at your table below, if all these field are available from the same
datasource, your best bet would be to do manipulate the dataset using SQL
code before RB gets it. For instance if you were to order your data…Hi Richard,
I would suggest making all your calculations with TppVariables rather than
DBCalc components. Start by replacing the DBCalc components in your
subreports with Variables and calculate their values in the OnCalc eve…Hi Paul,
There are help topics available for the TppSubreport.ExpandAll,
TppReport.ExpandDrillDowns, and TppReport.CollapseDrillDowns routines. Whey
expansion routines are you speaking of?
--
Regards,
Sorry, the second example can be downloaded here...
http://www.digital-metaphors.com/tips/DrillDownSubreportManualControl.zip
Hi Paul,
Thank you for pointing this out. We will take a look at possibly enhancing
this for a later release of ReportBuilder. As for now, there are a couple
options to try.
1. Take a look at the following exampl…Hi Paul,
There should not be any difference between design-time and runtime. Are you
able to see this behavior with the drilldown demo included with
ReportBuilder. If so please give me the exact steps you are taking. Also, …Hi Richard,
The Left position of the subreport object on the main report is the 0
position (left) in the actual design of the subreport.
--
Regards,
Nico Cizik
Digital Metaphors
in SubReport Alignment Problem Comment by nicocizik May 2006Hi Richard,
I created a simple test of a report with a label set to 0.5 left position in
the detail band and a subreport below it. Inside the subreport, I place
another label with its left position set to 0.5. When previewin…Hi Richard,
Sorry for the delay.
Take a look at the subreport demos located in the \RBuilder\Demos\1.
Reports\... directory for some good examples of what they are capable of.
Also, follow the link below for an exam…Hi Richard,
Be sure that the variable's Visible property is set to True. Does the
second variable show up with the same code in its OnCalc? Perhaps try
deleting the first variable and re-adding it.
--
Regard…Hi Richard,
Are you double clicking the event in the Delphi Object Inspector? If so, be
sure you did not previously delete a variable and forget to remove the event
code associated with it. Otherwise, this could be a problem…Hi Paul,
Are you using RAP? If so, you can place the value of the parameter inside a
global variable and use that to determine whether the text is visilble.
Then you can use an event such as Band.BeforePrint to toggle the vis…Hi Jim,
This looks like an example of a master with two detail datasets report.
Take a look at Demos 72 and 73 in the \RBuilder\Demos\1. Reports\...
directory. These show how to create this type of report. As for the grand <…Hi Bill,
Try disconnecting the subreport from the datapipeline when its visibility is
set to False. For instance...
ppSubreport1.Visible := False;
ppSubreport1.Report.DataPipeline := nil;
--
Regards…Hi,
Take a look at the following example of exporting to a text file and
including the subreport data. This should get you on the right track.
in Exporting to CSV Comment by nicocizik June 2006Hi Todd,
I would suggest creating a group in the main report that breaks on the
master linked field. You can set the height of the group header to 0 and
use the group footer to hold all the summary information for each subrep…Hi Duan,
Take a look at the following article. Also the example below may be of some
help.
http://www.digital-metaphors.c…Hi Todd,
Make sure that your subreports are not set to KeepTogether. Also, if you
are using any groups, be sure they are not set to KeepTogether either and
that the NewPage property is not causing this behavior.
--…Hi Daniel,
Sorry, I believe I missunderstood how your report was working. If I under
stand correctly you are taking the CODE field from the pipeline connected to
the subreport and using that value to locate another value in a…Hi Daniel,
Instead of using the locate routine, try accessing your data directly from
the pipeline. I assume your Label is located in the detail band of the
report and you are accessing the dataset that is connected to the re…Hi Daniel,
The band count should never be zero if the template has already been loaded.
Below is a quick unit I created to test this and it works correctly. The
band count is always 3.
procedure TForm1.Button1Click…Hi Daniel,
If you are loading a template, the event handler will not be recognized
unless the event was saved with that template and it is named the same.
Otherwise you will need to assign the event in the OnLoadEnd event of t…Hi Daniel,
Be sure each subreport is connected to separate datapipelines and that the
main report is not connected to any data. Also, be sure that each dataset
is actually returning data.
If you are using Section s…Hi Paul,
Are you able to recreat this error using the drilldown demo in the
\RBuilder\Demos\1. Reports\... directory? In my quick testing, everything
seemed to work correctly. If you can recreat the error, please give me the…Hi Ranjii,
If you would like to try the patch, please send an email to
support@digital-metaphors.com requesting it and we'll get it to you asap.
I'm unsure this will make a difference but it is worth a try.
--
Hi Ranjii,
9 subreports and 6 pipelines is still not a very simple report
. I would
suggest simplifying it ev…Hi Ranjii,
Are you able to recreate this behavior in a simple minimal example? As a
test try simplifying your report as much as possible (comment out all event
code) and see if you can find the issue. If the issue no longer …