nicocizik
Comments
-
Hi Martin,
I created a quick example that shows how you might go about doing this.
Hope it helps...
http://www.digital-metaphors.com/tips/Co… -
Hi Martin,
Since Child Subreport do not always take an entire page, there is not page
header or page footer available. As an alternative, you could use the Title
and Summary bands or create a group inside the subreport and use … -
Hi Heiko,
Thanks for evaluating ReportBuilder.
First, you may want to take a look at the Report Wizard (File | New) from
the main designer. You could probably use this wizard as a starting point
on creating your end-… -
Hi Michael,
There is a free thrid party component available to download from our website
named RotatedText. This will add a new text component to ReportBuilder that
can be rotated to any angle.
in Rotate an report by 90 ? Comment by nicocizik July 2004 -
Hi Michael,
Unfortunately this capability is not available in ReportBuilder. You could
try printing in Landscape mode to essentially give you the same effect on
paper.
--
-
Hi Alex,
Unfortunately there are no current plans to create a PDF viewer inside
ReportBuilder. From what you mentioned below, you definitely have far
superior knowledge of these products that I do. Perhaps some other
cust… -
Hi Alex,
I personally have never used a PDF to RTF converter, but a quick search on
Google returned numerous products that will perform this task. There were
also some utilities that could convert PDF to a JPEG image which coul… -
Hi Ueliton,
You can use the TppGroup.OnGetBreakValue event to retrieve the break value,
change its format and insert it back into the group break value. We are
looking into improving this for the next release of ReportBuilder. … -
Hi Reid,
You code below looks pretty straight forward. Since you are loading this
report from a template file, there is no need to assign the
Report.DataPipeline. This value is saved in the template file. Also, I am
a bi… -
Hi Reid,
If the datapipeline is on the form, then the creation order should not
matter. I mentioned it to ensure the datapipeline was infact available when
the template was loaded.
I understand you are frustrated, bu… -
Hi Reid,
There are no known issues like this one in ReportBuilder. The datapipeline
name will be stored down when you save your template and then when you load
the template, it will first look for that datapipeline on the main … -
Hi Martin,
You can add the page numbers to the report by simply adding a Footer band to
the main report and placing a TppSystemVariable inside. I updated the
example if you need to see it in action...
in Bug or normal behavior Comment by nicocizik July 2004 -
Hi Martin,
This is normal behavior. The Page Header and Page Footer bands are not
available in a Child Style Subreport. Though they will show up in the
designer, they are immediately disabled once the report begins generating.… -
Hi Alex,
The Tee50.bpl is a TeeChart package that I believe gets placed in your
Windows\System32\... directory. Be sure your library path is pointed to the
correct directories so the RB packages can install correctly.
Hi Paul,
Try using the Report.PrinterSetup.BinNames TStrings property to search
through the available bin names and choose the correct one for your
customer. If you do not know the exact name of the bin you need to use, you
Hi Nols,
Thanks for the explaination. I have never seen this bahavior in
ReportBuilder before. If possible please create a simple stand alone
example that demonstrates this behavior (ppRichText refusing text string)
and s…Hi Nols,
I'm unclear what you mean by "Second Run". Are you completely closing your
application down and reloading it, or are you just closing down the report
and re-loading that? In my testing whis similar code to your code b…Hi Nols,
1. Try placing a breakpoint inside the Report.BeforePrint event to be sure
the code is firing correctly the second time you load it. If it isn't, you
may need to use a different event or simply fill the rich text befo…Hi Chris,
You might try uninstalling the ReportBuilder TeeChart package and
re-installing it to see if that fixes it. We have never heard of this issue
before. If there is an entery for the RB TeeChart packages in the installe…Hi Keith,
We will have to look at this for an improvement in a later release. As for
now you will need to manually set the visibility of each DBText according to
its field value. The best place to do this is probably in the
Hi Keith,
If you are using Stretchable components, you should use the ShiftRelativeTo
property as the ShiftWithParent is not available when you have Stretch set
to True. I would suggest placing you DBText into a TppRegion and h…Keith,
Which version of ReportBuilder are you using? The ShiftWithParent property
should exist for both the DBText and DBRichText components. All printable
components should contain the ShiftWithParent property.
-- …Hi Gunter,
Yes, it looks as though two memos would work the best for your situation.
You may be able to use one memo for the description and then a DBText for
the Amounts, depending on the effect you are after. Remember that if…Hi Chris,
Unfortunately traversing data inside a mail merge RichText component is not
currently possible in ReportBuilder. We appreciate the feedback as this
would be a cool feature perhaps for a later release.
--Hi Sydney,
The TppImage.Picture property is a TPicture object that does not have the
LoadFromStream method available. You will need to use the TPicture.Bitmap
or TPicture.Graphic properties to get at this routine.
--…Hi Sydney,
Here you go. With this method, there is no need to link the datasets any
more.
You can change the style of a subreport by right clicking over the subreport
object and selecting Child, Fixed, or Section.
Hi Sydney,
Thanks for the clarification. I don't mean to force my methods on you, it
would definitely be possible to accomplish what you described below using
two separate TppReport objects and two separate print jobs. However…Hi Sydney,
master
This is exactly what a Master-Detail report is supposed to handle. My
example only showed one image per master record because only one was
available. When you link two queries in a Master-Detail re…Hi Sydney,
I would suggest creating a Master Detail report based on the two queries you
currently have. See the article below on the fundamentals on creating a
Mastre Detail report. Also, I created a small example that shows a…Hi Sydney,
From your code below, it looks like you have two report objects that you are
printing one after the other? This will not combine the pages or give you
the output you are after. I would suggest combining everything i…