nardmoseley
Comments
-
This is not something that it was designed for, however we do have a
limited example that you can download:
http://www.digital-metaph… -
I think OnCustomOpenDoc/OnCustomSaveDoc are going to be your best bet.
--
Nard Moseley
Digital Metaphors
http://www.digital-metaphors.com
-
All of the DOA code is locatd in daDOA.pas. The code is fairly simple and
straight forward. See the DADE thread of the tech tips newsgroup for an
overview of the architecture. You could easily customize the
Session.GetTableNames… -
Answered via support@digital-metaphors.com. Please do not post to newsgroups
and support@.
--
N… -
Try this example...
http://www.digital-metaphors.com/tips/QueryDesignerViaCode.zip
--
Nard Moseley
Digital Metaph… -
Answered in General, please do not cross post.
--
Nard Moseley
Digital Metaphors
http://www.digital-metaphors.com
-
1. You can use the PageStyle band to print a watermark. (see the Report |
PageStyle menu option of the report designer).
2. Try using the PageStyle.BeforePrint event to set the bands visibility or
modify any components in … -
Are you using Delphi code or RAP?
1. Delphi code
The event-handler must be a published property of the end-user form. See the
Templates and EndUser threads of the Tech Tips newsgroups for related
articles.
… -
See the ReadMe.doc installed to RBuilder\Demos\EndUser Databases\Advantage.
It contains detailed steps for setting things up.
1. You need to setup an AdsConnection object to point to a valid Alias.
2. Then define the Desi… -
Another option would be to either create a descendant of SystemVariable or
copy the code and create your own. You could unregister the existing
SystemVariable if you want to remove it and then register your own. Source
to the Sy… -
You need to install the rbADOXX.bpl package. If you have RB 7 for Delphi 7,
this package is called rbADO77.bpl.
This package is located in Windows\System32.
Use the Delphi Component | Install Packages menu option to … -
GIFImage is not our code. However I do recall that we encountered an issue
with it while developing ReportBuilder Server Edition. We had to modify
GIFImage to work properly. RB Server Image uses a unit called rsGIFImage
that con… -
----------------------------------------------------
Tech Tip: Using the Designer OnCustomOpenDoc and
OnCustomSaveDoc events
----------------------------------------------------
The Designer OnCustomOpenDoc and On… -
Try using the Delphi 'Find in Files' utility against the RBuilder\Source and
against your own source code. Search for 'rbIDE.res'.
When I do that it finds a single occurence, in
RBuilder\Source\ppFormWrapper.pas. (I am u… -
If you are simply testing, then just uninstall the Waler TXtraDevices
package from Delphi. You can test RB without it.
If you want to use TXtraDevices with RB 7, then you need to update to the
latest release of TXtraDevice… -
You need to purchase ReportBuilder Enterprise.
ReportBuilder Enterprise includes a powerful run-time Pascal coding
environment that we call RAP. RAP adds a Calc tab to the ReportDesigner.
From the Calc workspace developer… -
Any component that descends from TppStretchable can stretch vertically to
accommodate different amounts of data, and can overflow to as many pages as
needed. Descendants of TppStretchable include TppMemo, TppRichText,
TppRegion,… -
There seems to be a persistent misconception that because RB layouts by
default have bands, that this is in some way limiting. This is not true.
RB can do any type of free form report layout.in Treeview in Report Builder? Comment by nardmoseley February 2003
-
All of the RCL add-on components that we are aware of are listed on the
friends | RCL section of our web site.
--
Nard Moseley
Digital Metaphors
http://ww… -
I modified the RBuilder\Demos\EndUser\ReportExplorer example to do this as
shown below.....
{---------------------------------------------------------------------------
---}
{ TmyEndUserSolution.LoadEndEvent }
1. This is not new. There was a bug in RB 7.0 that the DataView AutoSearch
fields did not appear on separate tabs. This has been fixed for RB 7.01, so
that it works like prior releases.
2. The Caption is by default the Dat…
1. Use RAP, the run-time Pascal environment included with RB Enterprise.
OR
2. Use SQL to create a calculated field
Select
(sum_net + sum_vat) As sum_total
--
Nard Moseley
Digi…
It is possible to replace the Explorer Form, see
RBuilder\Tutorials\Complete\II. Applications\04. End-User with Custom
Explorer. This example may provide you with more control over the form
behavior.
Try modifying you…
The ReportExplorer is designed to stored the reports in the items table. And
it expects each item to have a folder id. This logic is in
RBuilder\Source\ppRtpExp.pas. See methods such as ConfigureReportTemplate,
SaveReport, etc.<…
If the error does not occur when using the default report explorer, then I
would modify the Delphi library path from RBuilder\Lib to RBuilder\Source
and trace in the debugger. Set break on exceptions to true in the Delphi
debugg…
This is not an issue. The RB query tools do not support subqueries. The
Query tools will not build invalid SQL that Avantage cannot process. The
only way the end-users could do this, is if they manually edit the SQL
string. As …
1. If the 'uses' clause of your application contains daDBBDE or DBTables or
any unit related to the BDE, then the application will require the BDE to be
installed on the users machines.
2. The Designer.DataSettings determi…
This had not been reported by any other users, nor is it something that we
can reproduce here.
Please let us how we can reproduce this behavior using the RB end-user
demos.
Chris's suggestion of making sure that…
Sorry, I do not understand the question/issue.
Using the RBuilder\Demos\EndUser Databases\Oracle examples and the Oracle
demo data, please provide detailed steps for reproducing the issue.
Also, please specify the De…