nardmoseley
Comments
-
See article below. I would create a custom query designer class and register
it. You can use the existing query designer - probably descend from it or if
that does not work, then copy it.
--------------------------… -
As a work around you could set the TppReportExplorer.FormCaption property at
Delphi design-time via the object inspector
I just researched this and created a patch for RB 10.02. Please send an
email request to support@di… -
Please create a simple example that we can run here. Send in zip format to
support@digital-metaphors.com.
-
By design, the merge process was deleting the original menu items, that is
why it only worked once. However I see your point and have made a patch so
that it work as you describe.in MergeMenu with GroupIndex give me "Toolbar item index out of range" Comment by nardmoseley March 2006
-
Thanks for reporting this issue.
I created a patch for RB 10.02. Please send an email request to
support@digital-metaphors.com
-
- There is patch available to fix the second issue - the subreport loading.
- We have not been able to recreate the first issue. I will email you the
patches and then you can try testing again. If the issues persist, we need <… -
-----------------------------------------------------------------
Tech Tip: Hide Object Inspector Properties
-----------------------------------------------------------------
Question:
----------
How can I preven… -
From your next post, I gather that you found the Report.Modified boolean
property.
-
I verified this and created a patch for RB 10.02. (I will email you the
patch.)
-
Check out my reply to your thread in general.
-
Yes.
RB 10 includes support for D6, D7, D2005, and D2006
-
For RB 9 we introduced two new events: Report.OnInitializeParameters and
Report.BeforeOpenDataPipelines and the new TdaSQLBuilder class. The goal was
to enable RAP code to be used to create/initialize parameters (including
Au… -
Here is an example that I created in RAP code. I used the
Report.BeforeOpenDataPipelines event. This example works in paradox.
Depending upon what database engine you are using, you might need to format
the date string differ… -
The Query Designer does not allow a function to be specified in the SQL
where clause.
The TdaSQLBuilder class can be used to programmatically modify the SQL in
the same manner as the query designer. For example you can use it … -
I opened daIBO.pas and checked the 'uses' clause, but daIBO does not appear
anywhere. I think that error message is incorrect.
There is a ReadMe.doc installed to RBuilder\Demos\EndUser
Databases\InterBase\IB Objects that… -
ReportBuilder 10 has uses new menu and toolbar classes.
Here is an example of hiding the report explorer help menu. I tested this
code using RB 10.02 and the report explorer patch. Send a request to
support@digital-metap… -
1. RB 10 includes built-in support for email.
When Report.EmailSettings.Enabled is set to true, then an email button will
appear on the viewer toolbar, next to the print button. For existing reports
stored to the report … -
- The database is wanting the name to be enclosed in quotes and the Dade
classes are coded to treat a name enclosed in quotes as invalid. Either the
Dade classes need to be changed to handle tables names with quotes or the
pl… -
- you can remove the quotes by using Delphi's StringReplace routine
lsTableName := StringReplace(lsTableName, '"', '', [rfReplaceAll]);
- that error message is generated by the database engine. You need to
determine… -
Please do not post any attachments to the newsgroups. Attachments can be
emailed to support@digital-metaphors.com.
From looking at the call stack, it appears that a table name
Cilent_Contact_Record has quotes around it w… -
- Do you have any other table names with an underline character as part of
the name? (I am wondering what is different about this table name)
- My guess is that daIBO.pas, the method TdaIBOSession.GetTableNames is
return… -
I created a patch for RB 10.02 that fixes the simplest test case I created
here. I will email you the patch.
-
1. The customer can create a set of global procedures in RAP and then export
the code module (select File | Export from the Calc workspace). Then create
a new report and select File | Import from the Calc workspace.
2. R… -
Thanks for reporting this - we had not tested that case. I will email you a
patch I created for RB 10.02 that fixes it.
-
- I recommend reading thru the Developers Guide information on RAP and
working thru the tutorials
- to add RAP to an end-user application, you simply add 'raIDE' to the uses
clause.
- see article below about c… -
- At Delphi design-time, the list of available database connection objects
is built by using a call to the Delphi IDE.
- At run-time there is code that can look thru the applications datamodules
(i.e. Screen.DataModules[… -
The database connection object should reside on the same form as the
TppDesigner component. Once you pick the session type, then the connection
object should appear in the database name list.
Try configuring the TppDesig… -
- The minimum code required is
myReport.Template.FileName := 'c:\myReport.rtm';
myReport.Template.LoadFromFile;
myReport.Print;
- The default value for Report.ShowAutoSearchDialog is true and for
DeviceTyp… -
The docking behavior of the report tree, for the case in which the data tree
and report tree share the same dock, will be improved for the next release.
-
I will research the docking issue. (I usually dock the data tree on the
right dock panel).
The menu work in our testing here and this was an item that I thought we had
fixed for RB 10.02.