nardmoseley
Comments
-
HI Christophe,
There is no way to translate the report only.
One solution might be to set the language to French, generate the report to
an archive file, then set language to English and use TppArchiveReader to
prev… -
Hi Adam,
From the description, I would try embedding a PDF viewer in your
application. One option is to use ActiveX/COm interface to Adobe Acrobat.
This is installed with Acrobat and you can easily import it into Delphi.
Hi Dima,
Thanks for the feedback. (Nico is out this week, I'll make sure he sees
this next week)
Best regards,
-
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Please configure your newsreader client to post using your real name.
-
Nard Moseley
Digital Me…Please configure your newsreader client to post using your real name.
-
Nard Moseley
Digital Metaphor…Please configure your newsreader client to post using your real name.
-
Nard Moseley
Digital Metaphor…Hi Jure,
Here are a couple of solutions:
1. If loading templates from file/database use Report.Template.OnLoadEnd to
set report properties.
or
2. Implement a utility routine, such as myInitialReport(…Hi Chris,
For a threaded architecture use a DataModule as a container for the Report +
DB Connection. Then for each request, create an instance of the DataModule,
generate the report, Free the DataModule.
TDataModu…Hi Glen,
'XLS Report File' exports report pages. In other words it emulates what you
see in the preview/print. A spreadsheet is a limited format, element
positions are mapped to the nearest column. For best results, set Label,…Hi Jeff,
I was able to accomplish this using the following two steps:
- use WordPad to create double-spaced, full justified text
- copy/paste to the RB RTF Editor. (or use save to file/load from file).
The…Hi Bill,
Try creating a new test project. Start with the example code I provided,
which works in my testing here. Make sure that exact code works. Then
incrementally modify the code to demonstrate what you are trying to
…Hi William,
Below is a code example.
- to add an image to a cell, set Image.Parent Never call AddObjects. When
creating layouts via code, always set Band.Report to add a Band, set
Object.Band or Object.Parent to ad…Hi Erik,
I emailed you an updated version of the SDAC plug-in. We removed the global
routines several version ago, they are not thread-safe. There were also some
TdaSDACSession methods that needed to be added.
Hi Bill,
When a Label is added to a TableCell, the Label.Anchors default to [atLeft,
atRight]. If you then modify the Label.Anchors to include atTop, then the
the Label will also snap to the Top.
Best regards,…Hi Bill,
You posted about creating grids dynamically on April 4 and I provided an
example. In that example I used the Label.Anchors to position the Label
within the Row like this:
lLabel := TppLabel.Create(self);
Hi Massimo,
I researched this and the solution is to download the latest version of the
Unidac plug-in, there is a link from this page.
…Hi Jeff,
There is a RB 16.02 patch available that resolves a range check error in
Xlsx export. I emailed you the patch.
There are no known issues with Xls export causing a range check error. If
you would like to cre…Hi Vincent,
The latest RB versions have a SummaryBand.AlignToBottom boolean property.
Please upgrade your ReportBuilder license regularly. We are a small team,
the revenue from the product goes back into supporting the RB…
RB 9 introduced the Border property
-
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Hi Carsten,
1. Components have a Border property - the dotted outline is used to
represent a component with no border. A solid outline indicates the Border
is turned on.
2. You can set AutoSize to False, but there i…HI Carsten,
I'm not clear on the question. Subreports w/PrintBehavior pbChild print on
the parent's page space (like memo) and thus the header/footer are not
printed. The title/summary and groupheader/footer provide alternativ…Hi David,
Thanks for the interest in RB for Delphi 10 Seattle.
We're working on it...
We'll post an announcement here, our web site, the Delphi newsgroups, and
send an e-mail blast as soon as it is available.Hi Uli,
Is there a reason you're not using TppDBImage?
Try loading the stream into a local lGraphic and assign it to the
Picture.Graphic like this..
lGraphic := TJpegImage.Create;
lGraphic.LoadFromSt…Hi Dexter,
Please send a sample .rtm to support@ and I will research it.
Best regards,
-
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Hi Christophe,
Thanks for the interest in RB for Delphi 10 Seattle.
We're working on it...
We'll post an announcement here, our web site, the Delphi newsgroups, and
send an e-mail blast as soon as it is availa…Answered via email.
-
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Hi Carsten,
Thanks for the feedback. For discussion about the source code, support@ is
preferred.
Hi Tom,
I created a patch for RB 16.03 that resolves the issue.
(I was able to modify the rbWiki example and reproduce this issue. )
Best regards,
-
Nard Moseley
Digital Metaph…
Report.XlsSettings should be set prior to calling Report.Print, but they
have no affect on Page generation, preview, etc.
The report layout (Report.Bands[ ].Objects[ ]) represents a model used to
generate report Pages. P…Hi Steve,
ReportBuilder is not designed to have a single TppReport instance that is
producing two different sets of Page objects, one to Preview and one to
export. The Preview is live and interactive - the user can scroll to f…