nardmoseley
Comments
-
Yes, that is exactly what it means

--
Nard Moseley
Digital Metaphors
www.digital-metaphor… -
Yes

--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
-
We can make your suggested code change to accommodate this case. Perhaps it
was a bug in an older release that saved the TppField objects with
dtNotKnown datatype. Thanks for the feedback.
--
Nard Moseley
Digi… -
Make sure you have Report.OutlineSettings.Enabled set to False. For a report
that large, the overhead required to generate the outline can slow
performance.
--
Nard Moseley
Digital Metaphors
www.digital-m… -
Here is an example of embedding the Preview in a panel. It will work for
Report and ArchiveReader.
http://www.digital-… -
Try adding ppJpeg to the uses clause.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
-
For future reference please always include environment information,
including Windows version, Delphi version, ReportBuilder version, data
access components, database engine, printer, etc.
RB 11 introduced a Group.NewFil… -
The Designer, Report, ArchiveReader, and ClientReport all use the same
Preview plug-in. Here is an rbWiki 'How To' example for adding a button to
the Preview.
in Add a button to ppArchiveReader toolbar Comment by nardmoseley March 2010 -
Thanks for the feedback. Other customers have requested this as well and we
are working towards adding more native export formats.
Perhaps there are multiple TppReport objects on the same form/datamodule.
Delphi requires names to be unique for all components owned by the
form/datamodule. For example if you place two reports on an empty form and
then…Rather than load another template, try calling
Report.Template.New;
That will clear the existing layout.
If you also want to free any associated data and code, call
Report.FreeModules;
<…
RB Server is built on top of RB Enterprise - same code base, same
TppRichText etc. The Report Server supports Form based reports and
DataModule based reports,. It uses a factory class we defined to manage
creating/destr…
For RB Server Edition we have rich text working on our multi-threaded report
server, without any errors. You might consider using RB Server Edition to
implement the reporting for your server app.
RichText internally reli…Please send your serial number and registration details to info@ and request
download info.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Yes. After I posted yesterday, I recalled that we have an rbWiki article
about this...
http://www.digital-metaphors.com/rbWiki/…
Create an FPicture private field for the form. In the OnCreate, create the
FPicture instance and in the OnDestroy, destroy the instance.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Hmm, I posted about the Server Edition and now you ask about licensing for
the Enterprise Edition, I am guessing you mean Server Edition?
in ASP.Net Deployment
Comment by nardmoseley
April 2010
RB Server Edition can be used to published reports to remote web browsers
and windows clients. Here is a link to an rbWiki 'How To' example that shows
how to use Delphi to build a COM WebTier that can be called from ASP.NET
The ArchiveReader application will need to include ppJpeg in the uses
clause.
TppImage.Picture is a of type TPicture, which is a Delphi class. Check out
the Delphi unit, Graphics.pas, the method TPicture.SetGraphic.
The mistake in your code, you do not quite understand the architecture and
behavior of Delphi TPicture.
<…I just emailed you an updated ppWWRichEd.pas. Looks like our installation
for Delphi 2010 is currently using an older version of this source file.
This will be corrected going forward.
--
Nard Moseley
Digital Metaph…Please upgrade to RB 11.08.
We do not have the resources to provide what you request.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
If you are not using RB 11.08, then try updating and retest. This sounds
like an issue we had with a prior release. (If you need download info,
please send your serial number and registration details to info@).
If you still ha…That code has been in place for years and we have not had any reports of
issues.
If you think there is an issue, please create a simple example project using
standard Delphi components and RB. Use the DBDemos data. Send in zip…The TdaSQL object contains a list of SelectFields that contain TdaField
items. These are used by TdaQueryDataView to create the pipeline fields.
The unit daQueryDataView.pas, the method TdaQueryDataView.SQLToDataView has
a loo…Here is an rbWiki article with tips for optimizing output for dot matrix
printers....
http://www.digital-metaphors.com/rbWiki/Out…Have not heard of this before. Do all reports exhibit this same behavior or
just this one report? Do the RB Demos exhibit this behavior? As a test try
commenting all event-handler code associated with the report. Also try
downloadi…Here is a live demo...
http://www.digital-metaphors.com/RBServerLive
--
Nard Moseley
Digital Metaphors
www.digital-metaphors…
We do not have experience with Data Abstract here.
The TppDBPipeline connects to TDataset descendants. That is the only
requirement to connect to it. For the report engine to work, the TDataSet
needs to support bidirecti…
The Designer.OnCustomOpenDoc/OnCustomSaveDoc events can be used to write
custom code to load/save reports.
If you implement these events then both the Designer and the ReportExplorer
will fire the event-handler instead o…