nicocizik
Comments
-
Below is my email response to the same question that I sent to you
January 16th.
---
Hi Lane,
You can use the Tag property of the DrawCommand to "attach" data to the
clickable object. Assign the Tag prop… -
Hi Lane,
When the HyperLink property is defined, the drawcommand automatically
becomes clickable and a ShellExecute is called for the hyperlink if valid.
To completely customize this process, you can implement the
O… -
Hi Steve,
As a test, try removing the RBuilder.ini file from your WINSYS directory
and re-running your application as the administrator. Then check the
WINSYS directory to be sure the file is actually not being written to.
Hi Nigel,
There is a patch available for RB 16.02 that solves this issue. Send an
email to support@digital-metaphors.com to receive the patch.
Hi Paul,
The Server edition of ReportBuilder does not support thumbnails so this
should not be an issue.
If you would like to disable the outline you can similarly use the
OnLoadEnd event of the ReportVolume compone…Hi Paul,
If your old reports are saved as templates, you can simply use the
Template.OnLoadEnd event to alter the report settings before it is printed.
in Thumbnailsettings always on for new and existing reports Comment by nicocizik September 2015Hi Ian,
This appears to be a caching issue. At what point are you changing the
SQL? Is this at runtime in the end-user designer or at design time?
Are you loading templates? From file or DB?
We would need to see …A patch is now available for RB 17.01 that solves this issue.
Contact support@ to obtain this fix.
Hi Paul,
The test was performed using the latest version of Nexus DB 4. (4.0015
Standard 32bit)
Hi Paul,
Sorry for the delay in this response.
I tried recreating this on my machine (Delphi XE8, NexusDB 4, RB 17.01)
but was unable to get the error. Below is the SQL I used to create a
test table. Perhaps you c…Hi Scott,
ReportBuilder (DADE) will strip all leading spaces from a search
criteria value before sending the SQL query to your database. You can
see where this is done in the daSQL.pas file of our source
(ResolveCriteri…Hi Scott,
This is likely a timing issue. The final value of a lookahead variable
will not be available until the first pass of the report has finished.
Take a look at the following example on how to retrieve a lookahead …Thanks Francisco,
I'm sure this information will be useful in the future.
Hi Francisco,
Are you trying to access your DB at design time or run time in the
end-user designer?
Are you certain the DBExpress plugin is properly installed into Delphi
(for design-time)?
Are you able t…Hi Chris,
Thanks for the clarification.
You need to add myChkBoxDesign to your uses clause in order to enable
the checkbox design controls at runtime. See the following article on
the registration of components in …Hi Chris,
The Build projects for ReportBuilder have not changed in quite some time.
The MyCheckBox files are built when the dclRBU, rbUser, and rbUserDesign
packages are built which is why the files are not included in th…Hi Ed,
This is also something that was missed when we converted all these
tutorials to FireDAC. I will fix this for the next release as well.
The included reports are really just for show however. You should be
ab…Hi Ed,
Thanks for pointing these issues out. In order to avoid the error, you
can add FireDAC.Stan.ExprFuncs to the uses clause and the demo will run
correctly.
I'll update our copy for the next release.
Hi Ian,
If raIDE is included in your uses clause, the Calc tab should be present
and available for your end-users to use.
As a test, create a new project in Delphi, place a TppReport,
TppDesigner, and TButton on the…Hi Ian,
You can use the TppDesigner.DataSettings.DataBaseName property to
pre-define a DB. Use the other DataSettings properties to tailor the
DADE datasettings (menu option) to your needs.
Hi Ed,
Each dataview in DADE (Data workspace) contains its own data settings.
The data settings can be changed for each dataview created including the
DB and DB plugin.
In your case, simply create one dataview with …Hi Paul,
The Report.Language property is deprecated and has been replaced with
the LanguageID property. The Language property is retained for backward
compatibility but should not be used for new development.
Repor…Hi Ivan,
This is not a known issue. We are going to need more information about
what you are doing in order to find a solution.
We do not permit attachments in these newsgroups. Please send all
attachments to supp…Hi Steve,
One option would be to manually measure the height of the memo before
the band prints, then size the label to the identical height (with its
vertical alignment set to center).
See the TppMemo.CalcSpaceUsed…Hi Willie,
For future reference, please use your full name when posting to these
newsgroups.
All end-user demos are installed with RB Pro or higher and can be found
in the Documents\RBuilder\Delphi XX\Demos\EndUser …Hi Lee,
The Template.OnLoadEnd event will fire each time a report is loaded from
the explorer. Check the Report.Template.DatabaseSettings.Name property
for the report selected.
In my quick testing with the end-user …Hi Rhonda,
The correct syntax to obtain a cell value would be
CrossTab1.Matrix.Value[Column, Row];
See the help topic for TppMatrix.Value for this and other interface
declarations. I also suggest taking a look at t…Hi Rhonda,
You can use the TppCrosstab.AfterCalc event to access the TppMatrix
after it has been generated but before anything has been rendered.
Then you can use the TppMatrix (TppCrosstab.Matrix) to access the valuesHi Andreas,
Which version of ReportBuilder and Delphi are you using?
How are you populating the RichText component? Is this done before
printing the report or during generation?
The TppRichText component in RB…Hi Ian,
If the search operator is BETWEEN, you can simply separate the two date
values by a comma and they will be processed as the two dates to be used
in the query.
Another option is to use report paramters and as…