nardmoseley
Comments
-
- Once you manually edit the SQL Text, the visual drag-and-drop linking is
not supported
- the DBPipeline.AddLink method can be used to programmatically define
links. This method can be called from Delphi code and from R… -
Check out the custom dataview examples, RBuilder\Demos\EndUser\Custom
DataViews. Run the example, access the Data tab and select File | New...
The dialog contains a Templates tab that contains custom dataviews. Custom
DataVie… -
Here is an example of creating a TdaDataModule and two linked QueryDataViews
in code...
www.digital-metaphors.com/tips/CreateDataModCustOrderLinkedDataViews.zip
--
Nard Moseley
Digital Metaphors
www.… -
Run the RBuilder\Demos\EndUser\Custom DataViews example. Custom DataViews
accomplish exactly what you are describing. The are pre-defined templates
containing one or more pipelines.
The next step up from Custom DataViews… -
- Check out the custom dataview examples, RBuilder\Demos\EndUser\Custom
DataViews. Run the example, access the Data tab and select File | New...
The dialog contains a Templates tab that contains custom dataviews. Custom
DataView… -
RB includes support using the InfoPower RichEdit cotnrol. Have a look at the
InfoPower RichEdit Support section of the following article...
----------------------------------------------
Article: ReportBuilder's Ric… -
My guess is that it is a timing issue. The intent of the MergeMenu is to
enable design-time definition of report items. At run-time RB uses the
information to build the menus.
To programmatically modify the menu, I recom… -
RB 10.05 has a new RB TeeChart Package builder utility that is run from the
installation script. A few customers have reported that it is failing - we
do not yet know why. Below are directions for working around this issue.
We recieved the example that you sent. It consists of a single component -
the WPTools RichText component.
I recommend contacting WPTools about this issue.
--
Nard Moseley
Digital Metaphors
A patch is now available for RB 10.05 that corrects this issue.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Please create a simple example project using RB and standard Delphi
components. Send in zip format to support@digital-metaphors.com
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
- this is /not/ a known issue, we cannot reproduce it here and no other
person has reported it
- try running the RBuilder\Demos, does the preview flash there?
- you may have a corrupt installation, try following the…
Thanks for your interest in ReportBuilder.
RB 10 includes support for D6, D7, Delphi 2005 and Delphi 2006/Turbo
RB 7.04 is the last produced release that supports Delphi 5.
A license to RB 10 includes access to…
- Multiple connections are not supported by the Visual Data Access
Environment.
- As a work around, you could try defining some views in primary database
that use tables from another database. I suggested that to another…
Great timing!
We have just completed a DADE plug-in for ElevateDB. You can download it
from..
http://www.digital-metaphors.com/rcl/d…
TeeChart is a product produced by Steema. Our goal is to enable TeeChart to
be used inside the ReportBuilder Environment.
You can experiement with TeeChart outside of ReportBuilder. To learn how to
use TeeChart, consult …
There is now a patch available for RB 10.05 that corrects this issue.
Registered users can email support@digital-metaphors.com and request the
patch.
--
Nard Moseley
Digital Metaphors
www.digital-metaphor…
This issue is being researched, seems to be isolated to using
RichText.MailMerge and manually loading the rtf while the report is
generating. I will post a follow up here, I think we are close to having a
fix.
-- <…
Try using the ArchiveReader.OnInitialPrinterSetup event. The ArchiveReader
works a little differently because the Page.PrinterSetup properties that are
stored with each page. The OnInitializePrinterSetup event occurs after the
Can't promise, but yes I think there is real chance...
--
Nard Moseley
Digital Metaphors
…
Try setting PrinterSetup.DelegateCopies to True, then the printer driver
will handle the copies, rather than RB. Not all printer drivers support
Copies, but if the printer you are using has this feature, then it would
probabl…
Try writing a loop...
Example:
liCopies := myReport.PrinterSetup.Copies;
myReport.PrinterSetup.Copies := 1;
myReport.ShowPrintDialog := False;
for liIndex := 0 to liCopies-1 do
myReport.P…There will be an RB 10.x for Delphi 2007.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
There is a patch available for RB 10.05 that corrects this issue. Registered
users can email support@digital-metpahors.com and request that patch.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Updated downloads are now available from our web site. They are built with
RB 10.05. We are working on updating the docs with new screen shots.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
This will be fixed for the next maintenance release, which will be RB
10.06....
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Position the mouse over the dataview tool window, then press ctrl + left
mouse button. This will display the exact SQL string that will be submitted
to Advantage.
--
Nard Moseley
Digital Metaphors<…
- what database product are you using? and what data access components are
you using?
- the Calc expression that you specify is used in the SQL string that is
submitted to the database engine. Therefore, you can specify …
- You can use the Query Designer to create Calculated fields that contain
any type of SQL Expression supported by your database engine. To do this,
access the Calc tab of the Query Designer. Add a calc field, and then set
the…
This is not a ReportBuilder issue. The Learning ReportBuilder example does
not have the problem you describe. The example uses a SQL expression that is
executed by a database engine.
Two possible causes of this (might be…