digitalmetaphors
Comments
-
Did you try running the demo I posted a link to? The demo is in RB 7
format. There is some info about how to do it at the top of the form of
that project:
{This ReportExplorerForm has been modified to support a ReadOnly fiel… -
Add an ID field to the database table for the folders and items so that you
can add a filter on the folder and item datasets when the user runs the
application. That would be the easiest away to do it.
Here's and example of conf… -
I sent the project to you.
Cheers,
Jim Bennett
Digital Metaphors
-
Works fine in tests here using ReportBuilder 7. What version are you using?
May I email you my test project and you can send it back with any changes to
show the problem? Perhaps there is something else I'm missing that you've
added.<… -
That does cause an AV. I added an exception with an appropriate message when
the join field can't be found in the fields table of the data dictionary.
Thanks for posting your findings.
Cheers,
Jim Bennett
D… -
Using ADO, we have not been able to get some of the databases you mention to
work in the end user solution. There is a data connectivity grid in the
RBuilder.hlp file under History of ReportBuilder Versions | What's New for
4.2 | Data… -
Check the BuilderSettings on the Data Dictionary. Make sure DatabaseName and
SessionType are correct. The SessionType should be ADOSession. Can you
access the server data in a Delphi app using DBGrids without RB involved?
Do you get the AV without an MDI child app? I will email you a couple of
patches which have the latest fixes, until the next release, which should be
very soon.
Cheers,
Jim Bennett
Digital Metaphors
For new components created in the designer, the Arial !0 font settings is
hard coded. Look in ppDsgner.pas in your installed RBuilder\Source
directory. You'll have to change the default font. Search for this in the
TppDesignerWindow c…There is an example in the installed RBuilder\Demos\EndUser\MDI which does
this for the designer and preview form.
Cheers,
Jim Bennett
Digital Metaphors
For faster service, please contact the vendor for the add-on Excel device
you are using.
We aren't aware of this being a problem.
Cheers,
Jim Bennett
Digital Metaphors
A source file patch is available to fix this. Send an email to
support@digital-metaphors.com and we'll reply with the source file attached.
Cheers,
Jim Bennett
Digital Metaphors
What text did you search on? I can't reproduce the error. What are the text
search settings set to?
Cheers,
Jim Bennett
Digital Metaphors
RAP documentation is not distributed, as it is a double top secret class
library. RTTI can provide a lot of information though. Some customers have
used the code insight and code completion of Delphi (and Coderush) to see
the availabl…Do you mean RAP code?
To change a RAP event handler at runtime, you can extract the code module
and change the "program" for that event handler.
Here is an example of moving a BeforePrint event of a group to another group<…The sort order should not change the number of records which are returned.
The detail SQL we generate should include the key linking field and all
ORDER BY's which are contained in the master query. You can Ctrl-click
over a detail …I'm not able to reproduce the problem. What specific steps are needed to get
the AV? Can you test with our end user demo projects to see if you can
repeat the AV?
Cheers,
Jim Bennett
Digital Metaphors
…Please do not crosspost, I replied in the Datapipelines thread:)
Cheers,
Jim Bennett
Digital Metaphors
You can use regular Delphi RTTI methods to see if it is a published
property.
uses
TypInfo;
...
if TypInfo.IsPublishedProp(TppGroupHeaderBand, 'BeforePrint') then
...
Cheers,
Jim Bennett<…Use the menu: File | Page Setup (dialog) | Layout (tab control). There
should be an option in the bottom left corner which lets you control this as
an end user.
Cheers,
Jim Bennett
Digital Metaphors
<…You can disable the search library from being linked in (reduces footprint
of exe as well) at runtime by removing ppSearch from the implementation uses
clause of ppProd.pas and rebuilding using the RBuilder\Source directory.
Doing thi…The first option is to install RB 7.01 and see if the problem goes away.
That is an IBO source file. You can debug your packages by building them
with debug information turned on. Then use delphi to debug each package.
Try sear…Does it work on any other OS? Win NT, 2K, XP?
You say you have a small test app. Can you send this to
support@digital-metaphors.com along with the steps to reproduce the problem.
Cheers,
Jim Bennett
D…This is not a known issue. I searched google.com and came up with no results
either. Is there any more information you could give us, other than
removing the uses clause entry for GIFImage has fixed your problem?
Cheers,<…Very cool.
Cheers,
Jim Bennett
Digital Metaphors
Thanks for the suggestion.
Cheers,
Jim Bennett
Digital Metaphors
You can replace the query tools and increase the width of the list boxes by
setting the ScrollWidth property and disabling the MultiSelect property as
shown in this demo. You can also change the width, and not set ScrollWidth,
if you…Try testing with the report demo #51 and 52. Theye are one pass by default.
If you set them to psTwoPass, the page numbers should begin showing the
total count.
In your report, make sure Report.SaveAsTemplate is false, in case …You can build a list as the report generates the first pass (of a two pass
report) before any pages are generated. Use a TStringlist object to store
the list of values and then check its count property. Here is an example:
in Multi-page report with page totals Comment by digitalmetaphors January 2003In your query do you need to use the SQL keyword DISTINCT? Do you need the
duplicate names? I would create a calculated field on your dataset for first
name + last name. Order by this calculated field. Place the total
calculations in …