digitalmetaphors
Comments
-
Feel free to send the changes to support@digital-metaphors.com and we can
look into it. Have you tested your changes using the ADO and BDE DADE
plugins to make sure they also work with your changes?
Cheers,
Jim… -
You shouldn't try to change the source to try to add quotes around every
field. This may lead to more problems than it is worth.
If your users are going to be creating dataviews, then I would suggest
changing the actual fieldna… -
No, there isn't a Firebird specific DADE plugin. How are you accessing
Firebird? You should be able to use the current DADE plugins that you would
use for that connectivity.
Cheers,
Jim Bennett
Digital Meta… -
Look in daSQL.pas and place a breakpoint in TdaSQL.ResolveCriteria to see if
RB is changing the date format. What Dade plugin are you using? You may have
to modify the code in this routine to support your date formatting. You can
see … -
You should enter it matching the date format that the machine regional
setting are configured to. What is it set to in the windows regional
settings? How is it set on your database when you run your database
manager? Try making them … -
Changing our source would do the trick too. We usually don't suggest this as
it may cause other problems and we can't support the problems they cause.
However, if it works that is cool so it doesn't add the select field behind
the sce… -
The SQL generation is working as designed. The field in the ORDER BY usually
has to also be in the SELECT clause. Since it isn't supported on all
databases, we had to add to the select clause behind the scenes to avoid
database engine… -
Thankyou for the suggestions! We don't have any plans at this time to create
a dialog builder feature, but I'll add this to the "Requested Feature" list.
Autosearch is a powerful solution. You can create a descendent from the
an… -
Could you send a demo project to us at support@digital-metaphors.com we have
a DBDemos database version in FF2 format but we have not been able to
reproduce the problem using that data.
Cheers,
Jim Bennett
Digita… -
What version of RB are you using for this report? In older versions of RB,
such as 5.5x, there was a problem silmilar to this. Can you test with RB
7.02 trial if you are using an older version to see if the problem goes
away?
This is a multi-part message in MIME format.
This is a known issue and the workaround is to design the report at runtime
if you want to edit the SQL and be able to save the report template. We
don't have a patch for this yet, it only happens at Delphi design time.
Ch…If the Nexus data access component is a proper TDataset descendent, it
should work just fine in RB using the TppDBPipeline.
Are you using DADE? We haven't worked on a DADE plugin for this new
component set. However, at a glance …It can be done. If you want to take control over the WHERE clause manually,
then you can use a similar approach to the non-DADE autosearch demo which
modifies a TQuery component's WHERE clause. Here is an example which
modifies the W…Everything is located in RBuilder\Demos\EndUserDatabases\DBISAM\Native\ The
first part is to test support of the daDBISAM.pas file. Use this unit in
your project so that it gets linked in. Then make sure at runtime you can
set the Des…You'll have to create a RAP pass through function to do this, as these
aren't surfaced in RAP. There are RAP tutuorials in your installation in
the RAP demos directory which show how to create RAP pass thorugh functions.
The installe…Create a group on a custom field, such as a label or variable. This will
let you create a new page by forcing a group break on a group which has
NewPage set to true in the Groups dialog. Use the DetailBand.PrintCount
property. You …Please do not cross post. Response is in General..
Cheers,
Jim Bennett
Digital Metaphors
Yes, check this on the autosearch field objects in the OnGetAutoSearchValues
event of the report: It should have a ShowAllValues property that you can
check, just like SearchExpression. For RAP, the ShowAllValues property is
not sur…Try setting the 'New Page when less than' value in the Group dialog. This
forces the group header to the next page when the space available at the
bottom of the page is less than the given amount...
Cheers,
Tom Ollar<…var
lField: TppField;
begin
lField := Customer.FieldObjects['Company'];
Label1.Caption := lField.AsString;
end;
This code works for me in RAP, RB Enterprise 6.03. All of the RTTI you
mention (except As…class function TRAPTFieldRTTI.RefClass: TClass;
begin
result:=TField
end;
result := TppField;
Likely it...
Tom Ollar
Digital Metaphors Corporation
P.S.
Great work utilizing RTTI…Answered with a custom demo sent via e-mail...
--
Cheers,
Tom Ollar
Digital Metaphors Corporation
Sounds like you have older dcus/pas files on your machine. Make sure that
you uninstal RB completely following the corrupt install cleanup
instructions in the TechTips newsgroup in the Installation thread.
Reinstall RB Enterprise 6.0…It sounds like you need to loop through the teachers manually in the
BeforeGeneate event of the main report's detail band, building up the memo
content. Then let the memo generate, then let the subreport generate. It's
not really pos…We don't have any examples you can download which are specific to Teechart.
You can create the RTTI for other component classes as shown in the RAP
demos and tutorials in your RBuilder installation. I pointed you to Mr.
Junior's post…You can add series to a chart at runtime in RAP, if you extend the RAP RTTI
to do include the necessary Teechart classes and properties. See Valdir
Stiebe Junior's post in today's general newsgroup postings.
Cheers,
…Thanks for the suggestion...
--
Cheers,
Tom Ollar
Digital Metaphors Corporation
Take RAP out of the equation and code using Delphi events. Anything you can
do to make the problem simpler will help. Get it wokring with Delphi events,
and then try porting it to RAP code.
Cheers,
Jim Bennett<…Autosearch won't change the sort order. You need to call a RAP pass through
function that can extract the SQL object from the dataview of the report.
Then you can manipulate the OrderBy fields. Here is an example that swaps
the order…