digitalmetaphors
Comments
-
We have had no problems using Advantage on our Win 2K and XP machines. Can
you test with RB 7.02 trial to see if the problem goes away? If that doesn't
help, then can you send a simple example to support@digital-metaphors.com
and we'l… -
Was the data locked by the user? Did another user delete the record? It
sounds as if the Advantage connection is closed, giving you a BOF, EOF data
error. Is it timing out? Can the machine connect to the data on a DBGrid on
a form wit… -
You would have to load all of the reports to get hte autosearch fields, then
build a list of them so you could construct a single autosearch dialog that
showed all the fields. One way to do this is to create the autosearch fields
dynm… -
The solution is to create a custom report explorer form replacement so that
you can code this feaute into a menu option or popup option. Then you can
allow the multi selection to take place. Then when you want to print the
reports, yo… -
The easiest way to do this is to filter the datasets that provide the
folders and items to the report explorer. You may need to add an extra field
to the database tables to help you accomplish this with a filter.
Cheers,I tried it and it worked for me using a standalone designer and also from
the context of the main report explorer demo project:
implementation
uses
ppTypes, ppUtils,
myDataview,
daIDE;
pro…One approach you might want to try is to raise an exception in that event
and trap it in a try..except handler. There should be adequate try..finallys
in our code so it should be safe to do this.
Cheers,
Jim Ben…Perhaps you could use the new custom report parameters to pass information
along with a report and then use it in the event handlers of the report (ie.
RAP code can use parameters). Custom parameters will let you define pretty
much an…Autosearch ripples through the source of RB. Perform a search on
TppAutosearchField in our source and you'll see it is used in different
places. If you need to replace the autosearch field class, the easiest way
is going to be to modi…Try using RB 7.02. You should be able to have as many links as you want to
from detail dataviews to the same master dataview.
Cheers,
Jim Bennett
Digital Metaphors
The label should be located in the RB designer at Delphi design time if the
package is installed into Delphi correctly.
Cheers,
Jim Bennett
Digital Metaphors
To eliminate the duplicate entries you have in the data table for the
dictionary tables, add a filter on the dataset that feeds the data
dictionary component.
Cheers,
Jim Bennett
Digital Metaphors
It is a bug we couldn't workaround since we don't have Teechart 4.04 source
as it is only a special version of Teechart intended for the free bundled
version of Delphi. The Teechart authors do not receive royalties from this
version o…What version of Teechart are you using? There is a limitation on the bundled
version of Teechart (v4.04). See the RBuilder.hlp file for more info on
which versions of Teechart are fully supported by RB.
Cheers,
Jim B…RB works a little differently. Shift-mouse click is the key to use when you
want to multi-select controls in the RB designer.
Cheers,
Jim Bennett
Digital Metaphors
One option is to load all the reports into subreports in a single main
driver report which print the subreports. Set the subreports to be section
style subreports.
Alternatively, you can print multiple reports to the same printe…We are getting delayed responses for emails which get returned for you.
Anything we send to you gets returned. We do receive your emails. Below is
the return message with some info. Contact your system adminstrator to see
if there is …If you have manually edited SQL queries in DADE, then you can use the
standard way of creating and modifying the autosearch field objects at
runtime, the only difference is that the query is created in DADE and
doesn't lie on a form. …In the past I have had emails bounce back to me before as they couldn't be
delivered because there is a . in an email address before the @ sign. Your
email address has this period in it like this, caslo.sirna@ That is most
likely the …You can load them by calling Report.Template.LoadFromDatabase. Be sure to
configure the Report.Template.Datasettings property first so that it can
find the database table.
Cheers,
Jim Bennett
Digital Metaph…Sets aren't supported in RAP, so there is a way to do it with a boolean
setting:
dbText.Font.Bold := True;
Cheers,
Jim Bennett
Digital Metaphors
Is ppCTDsgn in your uses clause? Try that as that registers the UI classes
for the crosstab editor and causes them to be linked into the exe. If it
still doesn't work, then please send a small minimal example project to
support@digita…RAP is one way for the end user to add this to the report. If you rebuild,
you could surface this as a field in a supporting JITPipeline so that the
user can hook a dbMemo up to the JITPipeline field and print the autosearch
informati…Sounds like the initialization is firing in two different orders. To worka
around this, make the registration call to use yoru form before you execute
the report explorer.
Cheers,
Jim Bennett
Digital Metaph…The report explorer class sets it, so simply changing it on the report
explorer form replacement won't work. Look in ppRptExp.pas and change the
Execute method to not set it to crDefault.
Cheers,
Jim Bennett
RB doesn't provide any built in capability to change something like the
ORDER BY, because that would imply that you would need to change the groups
defined in the report layout. However, since you are using DADE, you can
show a custom…Hi Funky II (younger). Please use a real name for our newsgroups. We'd like
to keep things around here as professional as possible.
Descend from the custom autosearch dialog class so that you aren't tied to
the descendent autose…When you add a calc field in the dataview, it tries to build the GROUP BY
clause. Do you have a BLOB field in the GROUP BY that is causing the SQL
error. Ususally this is what happens. You'll have to remove the BLOB from
the select cl…1. Yes, you can create a group on a static label and set its text to force a
group break when you want, simply by changing the string value.
2. The TppGroup.OnGetBreakValue is the same thing as coding the group break
with a labe…When the report is connected to a datapipeline, and it has groups defined in
it, then it checks the Group.Breakname value on the pipeline to see if it
should cause a group break. You can also control the group break by basing
the grou…