nicocizik
Comments
-
Hi Rene,
I will take a look at your example. In the mean time, try running the
Group-Email example we have and see if you get the same behavior. If
not, we will know that something in your specific app is causing this issue.… -
Hi Rene,
We have not seen this behavior before. If you are using the same
version of Delphi, RB, and Indy, there must be another item that was
changed that is causing this behavior. At some point did you alter the
repo… -
Hi Rene,
You can use the Group.OnGetEmailSettings event to access the
TppEmailSettings object used to send each group file. The
TppEmailSettings object has an attachments property that can be added to.
-
This initial value of the FStringTrim variable is False. Setting this
value to True will simply ensure that all empty spaces are removed to
the right of any field value
-
Hi Willie,
The previewer consists of the following parts:
- TppPrintPreview: The preview form
- TppPreview: The default preview plugin (creates toolbars, viewer,
menus, etc. on the preview form)
- TppPreviewPlug… -
Willie,
The Report.PreviewForm property does not represent a TppPreview object.
It is the preview form itself. (see the ppPrvDlg.pas file).
The TppPrintPreview object (or preview form) contains some pass thru
prop… -
This depends on the design of the report. First be sure the band has a
dynamic height (phDynamic). Second, if there are any non-stretchable
components below the empty region, they also need to be placed into a
region which is the… -
Hi Cedric,
Rather than toggling the visibility of a group band, you could either
use a TppRegion set to Stretch or child subreport. Then simply toggle
the visibility of that component inside the Band.BeforePrint event based <… -
Hi Patrick,
This was not a known issue with RB 11.07. Do you get this behavior with
every report you try to duplex print? If you create a minimal example
(Report with a label spanning 2 pages) do you get the same behavior? <… -
For future reference, please use your full real name when posting to
these newsgroups.
The CachePages option keeps a copy of each originally generated page in
memory so when the report is refreshed, the pages are not re-genera… -
Hi Philip,
Thanks for the feedback. We have the addition of active form features
for PDF (or FDF) added to our list of possible enhancements to research
for a future release.
-
Hi Adrian,
The column number returned from the CurrentColumn property is zero based
so your conditional statement will never be true for a three column report.
Be sure you are using an event such as the Line.OnPrint to to… -
Hi Jo,
In my testing with the TeeGDIPlus component it looks as though the
resulting metafile created uses the ModifyWorldTransform command
numerous times. This currently is a limitation of the PDF device's
metafile rend… -
Hi Dan,
For future reference we prefer that you use your full name when posting
to these newsgroups.
This issue has been fixed for the second build of RB 12.05 (Build 251).
Please re-download and re-install RB 12.… -
Hi Dan,
For future reference, please use your full name when posting to these
newsgroups.
The DBMemo component does not support the ReprintOnSubsequentPage feature.
One option would be to use a DBText with Wrap… -
Hi Tony,
For future reference, please use you full name when posting to these
newsgroups.
If you have these memos set to Stretch, you can also set the
ShiftRelativeTo property of the lower memo so it will shift up o… -
Hi Goran,
Vertical alignment of text within a textbox is currently not supported
however we have this on our todo list to possibly research for a later
release.
Currently it should be possible to re-position the dra… -
Please see the response from Nard to a similar post in this newsgroup on
09/10/2011.
-
Thanks for the feedback. We will consider this for a later release.
-
Hi Mark,
The PDF device is only capable of embedding TrueType/ClearType fonts.
If your user would like to embed the Gill Sans font, I would suggest
using the TrueType equivalent Gill Sans MT.
-
Hi Bas,
Please upgrade your version of ReportBuilder to 12.05 are re-test. We
made some changes to the right/bottom anchors for this version.
Contact info@digital-metaphors.com with your serial number for upgrade
i… -
Hi Shane,
For future reference, please post to these newsgroups using your full
name. Also, please do not post using all capital letters in the
subject. This implies that you are yelling and is not in the spirit of
our… -
Hi Bas,
I will make this change as well.
-
You are correct. I will make the UpdateChildControlBounds virtual for
the next release.
The current workaround would be to have your custom region descend from
TppStretchable rather than TppCustomRegion to give you full contr… -
Hi Bas,
It looks as though the UpdateChildControlBounds is called by the
BoundsChange routine which is virtual. You could override this method
and perhaps call your own version of UpdateChildControlBounds instead.
-
Hi Samuel,
In code you can use the Report.Parameters property to create or manage
report parameters. In the designer you can use the Report tree (right
click over the parameters node) to create them. See the TppParametersEugene,
Use the PrintOnLastPage property of the header band to prevent it from
printing.
Hi Eugene,
The report simply displays the data it is given. If it is displaying
the same record over and over, this is the only data available.
Which band is the subreport located? Which band (inside the subreport)
Hi Eugene,
You need to be sure you are connecting the subreport itself to the
proper datapipeline. This can be done in the Report | Data... option in
the main menu of the designer when on the subreport tab or by setting
Hi Ken,
One option would be to use the SummaryBand.BeforePrint event to hide the
header band of the report to prevent it from printing. It would then
need to be set back to visible if navigating backward through the report