nardmoseley
Comments
-
This was answered Jan 19 via email, but just noticed this post.
The solution is to set AutoSize False and size the header and detail
elements width to be the same. Then set the text alignment of the header
element to be … -
Hi Ralf,
We have had some customers report issues with Windows 2016 Server RDP.
Try the following using RB 18.02.
- open ppPrintr.pas and modify this line
{.$Define ppUseGetDefPrinterAPI}
to th… -
Try extracting the TdaSQL object for the detail dataview and setting the
SkipWhenNoRecords property to False if you want all master records to print,
and True if not.
An example of extracting the SQL object can be download… -
Excellent! When you have it completed, please send a zip file to
support@digital-metaphors.com and we can add it to the friends | data | DADE
plug-ins page.in kbmMW and RB Comment by nardmoseley January 2003
-
1. Check out RBuilder\Demos\Custom DataViews. One option is to create your
own custom dataview classes. See the DADE thread of the Tech Tips newsgroups
for an overview of DADE.
2. The following example shows how to apply a… -
Try downloading the following example. It shows how to extract a DataView's
TdaSQL object and access the TdaCriteria objects. The
TdaDataModule.DataViews[] array property and the TdaDataModule.DataViewCount
property can be… -
Okay, great - for now just modify the RB 6 source code for that method.
You should be able to install D7 and RB 7 on the same box as the D5, RB 6
machine. There is no conflict there.
--
Nard Moseley
D… -
Have you tested this against RB 7 for D5? If not try downloading a trial
version and performing a test.
From looking at the RB 7 source code, I do not see an issue. The
SelectCriteria method indexes into the AvailableCrite… -
For run-time support you can simply copy daIBExpress.pas from
RBuilder\Source to RBuilder\Lib and then recompile your Delphi project.
For Delphi design-time support you must recompile the rbIBE7x package (where
x correspon… -
Table Views are not supported in the currently release. However, we have had
a few customers modified the DADE plug-ins for various database, to add
support for view. The TdaSession.GetTableNames method is the responsible for
re… -
Perhaps this example will help you...
http://www.digital-metaphors.com/tips/EditSQLAndSearch.zip
--
Nard Moseley
Digi… -
Try setting up and ADS Alias in an ADS.ini file and configuring the
ADSConnection to the use the Alias.
--
Nard Moseley
Digital Metaphors
http://www… -
1. As a first step, try to run the RBuilder\Demos\EndUser
Databases\Advantage demo app. (do not use the DataDictionary). Follow the
directions in the demo's ReadMe.doc.
2. As a second stet try to get your end-user app work… -
Thanks for the feedback. Please submit a prioritzed list of improvements
that you would like to see. E-mail to support@digital-metaphors.com and I
will log it to the wish list.
All areas of the product are open to improvem… -
There are no known issues with using dbf tables. When you specify the Alias
in the Ads.ini file it needs to have a ";C" at the end to indicate dbf
tables.
If you would like to zip the dbf tables and e-mail to
support@… -
1. For an example of using Advantage with the EndUser solution, check out
RBuilder\Demos\EndUser Databases\Advantage. There is a ReadMe.doc includes.
2. Configure the Ads.ini file with an Alias that includes the appropriate
Try using the FF plug-in installed to RBuilder\Demos\EndUser Databases\Flash
Filer
--
Nard Moseley
Digital Metaphors
http://www.digital-metaphors.co…
In addition to clearing the meta data, perhaps try closing/re-opening the
DataPipelines that are connected to the DataDictionary related datasets.
--
Nard Moseley
Digital Metaphors
in Refreshing Data Dictionary at runtime .... Comment by nardmoseley December 2003
1. To run the DataDictionary Builder at run-time, please see the article
below. The other alternative would be to programmatically update the data
dictionary tables with appropriate entries.
2. You must also clear the meta…
Please re-read my response. I suggested using the Shape.OnPrint event (not
Report).
From the Design workspace of the ReportDesigner, select the TppShape object
with the mouse. The Shape will become selected in the object i…
If you want to print every other line with a color, try placing a Shape in
the Detail band and implementing the Shap.OnPrint event:
Shape1.Visible := not(Shape1.Visible);
DADE is designed to support query bui…
Write code to access the TppDesigner.Menu property and traverse the menu
items and sub items. You can then the Enabled and Visible properties as
desired.
To disable the print button from the preview tab of the report desig…
Yes, once you edit the SQL as text, the AutoSearch and Linking features are
no longer available.
You can call the TdaSQL methods to add select fields, search criteria, order
by fields, etc. Then the SQL exists a collection…
The TdaSQL object was designed to be an internal implementation class. It is
not currently documented. This is something we will need to add to a future
release. For now, consult the source code, daSQL.pas.
--
Nard Mo…
Try downloading the following example:
http://www.digital-metaphors.com/tips/AddSearchCriteria.zip
--
Nard Moseley
Digital…This is a multi-part message in MIME format.
This is a multi-part message in MIME format.
This is a multi-part message in MIME format.
This is a multi-part message in MIME format.
Please see the example in RBuilder\Demos\EndUser Databases\Access\ADO. The
example contains is a ReadMe.doc, EndUser tables created for Access and a
working project. Try importing the EU tables into your access database.
<…