nardmoseley
Comments
-
You can use Delphi to implement event-handlers - just as you do for other
Delphi components. Select a component - such as a Band or DBText and then
use the Delphi object inspector.
I recommend working thru the Developers… -
RB Enterprise includes RAP (the run-time Pascal environment that adds the
Calc tab).
The same Developers Guide is included with Std, Pro, Enterprise Editions.
You may want to upgrade from RB Pro to Enterprise.
… -
Add the appropriate units to the 'uses' clause of your application.
The following articles lists which units to add for the build-in RB
components.
------------------------------------------------------------<… -
I recommend updating to the latest release.
RB 5 was release in 2000, yes things have improved since then
… -
On solution is to use a JITPipeline that contains a Field to represent each
parameter. Set JITPipeline.RecordCount to 1 and implement the
OnGetFieldValue event to return the parameter value.
Then in the report layouts you can … -
TppBand defines BeforePrint, AfterPrint etc. as a published properties. All
bands descend from TppBand.
Either of these will compile....
ppReport1.DetailBand.BeforePrint := ehDetail_BeforePrint;
or
<… -
I just emailed you a patch that corrects the issue with using OnGetText with
when WordWrap is true.
Registered users of RB 10.07 can email support@digital-metaphors.com and
request the patch.
--
Na… -
Set Checkbox.Style to csXInBox or csXMark
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
-
There is a patch available now for 10.08 now
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
-
I emailed each of you a proposed patch to test.
I was really hoping that one of you could provide an example that we could
analyze here.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.… -
Try to recreate more closely your actual report. Check whether it happens
with all of your reports or only some of them. If not all them, then try to
isolate the differences. Have a closer look at what you are doing that might
We cannot reproduce the issue here.
1. Are you using RB's Data workspace to build queries? Or placing data
components on a form/datamodule. If you are placing the data components on a
form/datamodue, is the report on the…Please post questions to a single destination.
This was received and answered via support@digital-metaphors.com
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
There is a patch available that will fix this issue. Please email
support@digital-metaphors.com and request the patch.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
ReportBuilder Server can load reports from .rtm that contain images, so it
definitely works. RB Server can run as a Windows Service and is
multi-threaded.
Check that the Service App has included ppJPEG in the uses clause…
RB 10 internally leverages TStringList.CommaText to parse the items. (Prior
RB versions do not do this, so you might need to update).
For your example, I would try the following
'"Doe, John", "Smith, James'"
RB 10 is being upated with maintenance releases - RB 10.01, RB 10.02, ...
RB 10.08. This is what you are referring to as a service pack, except we
simply rebuild the entire product.
RB 10.08 is available to all register…Thanks for sending the example.
A patch is now available for RB 10.08.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Please consider upating to a newer version of Delphi and ReportBuilder.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Please post using your real name. You need to modify the settings of your
newsreader account.
When asking questions, please specify relevant environment info. At a
minimum specify Delphi version, ReportBuilder version, and Win…
Can you try using RB 5 to create an example that uses the DBDemos or
Interbase Employee data. Create a Delphi project with a single report. Then
zip it up and email to support@digital-metaphors.com. We can run the example
usi…
Can you post the question using English. If not then perhaps someone that
knows Portuguese can try to help you.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
As a test try commenting all event-handler code associated with the
report. Make sure you do not have any code that manipulates the data
while the report is generating.
As a test try download the latest version of RB and perform…Please specify Delphi version, ReportBuilder version, Windows version, data
access environment, etc.
As a test try commenting all event-handler code associated with the report.
Make sure you do not have any code that manipulat…
You might also consider using RB Server Edition. You easily register all
your existing reports with RB Server. Download a trial version from our web
site and you can probably have the whole thing working in one or two days.
The Designer loads the ini settngs the first time it is shown. I recommend,
dynamically creating and configuring the designer each time.
Example:
uses
ppEndUser;
var
lDesigner: TppDesigner;<…
Try download a trial version of RB 10 and perform the same test.
Might be a timing issue.
Try setting Designer.IniStorageName at startup, prior to doing anything
else.
--
Nard Moseley
RB has built-in support for drill down subreports. Rather than popup a
window, the detail information appears on the same page - more like page
animation. There is a drill down subreport tutorial in the Developers Guide.
Use TADOQuery and SQL. Filters are slow. Doing more work on the data
access/SQL side will result in faster, simpler reports.
If you use the DetailBand.BeforePrint event to set visibility, then in the
case in which detail…
I just tried to open the .rtm files - design-time and run-time and did not
encounter any issues.
One thing you might want to do is to delete your existing RBuilder.ini from
the Windows directory. RB 10 will create a new …