nardmoseley
Comments
-
1. Try creating the detail search criteria first and then define the master
criteria.
2. Another approach is to access the Preview tab, press the search button.
The search dialog is displayed. Now press the right mouse but… -
Use TppMemo if you need to wrap text.
example:
myMemo.Lines.Text := 'put lots of text here and it will be wrapped';
If you want the Memo height to automatically adjust its vertical height to
accomodate the… -
For future reference, please post server questions in the Server newsgroup.
When a Web session is created, the WebTier creates a folder under the
WebCach edirectory that contains all of the content for the session. For the
Modify your Delphi library path from RBuilder\Lib to RBuilder\Source. Then
run the application and trace the source code and try to locate the bottle
neck. Try opening daMetaDataManager.pas and placing breakpoints in all of
meth…
Try setting DataDictionary.ValidateTableNames and ValidateFieldNames to
False.
From the RBuilder.hlp for the DataDictionary.ValidateTableNames
property.....
Defaults to True. This property indicates whethe…
The following article contains information on how dates are handled and how
you can control the formatting.
-------------------------------------------------
Tech Tip: Date formats used by DADE
-----------------------…
---------------------------------------------
Article: Currency Formatting in ReportBuilder
---------------------------------------------
Currently when formatting currency display formats, ReportBuilder internally
ca…
1. Create the supporting database tables using the SQL script located in
RBuilder\Demos\4. EndUser Databases\SQL Server 7\CreateEndUserTables.sql
2. Try running the example located in
RBuilder\Demos\4. EndUser …
I researched this and for now you will need to modify the source code.
--
Nard Moseley
Digital Metaphors Corporation
http://www.digital-metaphors.com-------------------------------------------------------
Tech Tip: Using the DataDictionary Builder at Run-time
-------------------------------------------------------
Is it possible to run the DataDictionary Builder at run-time?…
You are correct, you need to update the database name for each dataview by
iterating thru the DataModule.DataViews[] array.
example:
for liIndex := 0 to myDataModule.DataViewCount-1 do
begin
lDataVie…
When you create a new Query DataView using DADE, the DatabaseName is saved
as part of the definition. When the report loads, it tries to resolve the
database name object reference.
Please the following article for details.…
Thanks for your interest in ReportBuilder.
1. There are examples that use Interbase located in RBuilder\Demos\EndUser
Databases\Interbase. There is a SQL script that you should use to create the
supporting table for Interb…
For future reference please do not post attachments/images etc to the
newsgroups. Send them to support@digital-metaphors.com.
You are encountering some limitations of the current implementation. These
are known limitations…
Sorry, but I think I may have misunderstood the original question. Just went
back and re-read it.
I think the approach you need to take is to flip the condition around from
aDateField <= to_Date(SYS_CONTEXT('usere…
To fix the behavior at Delpi runtime, you can copy daSQLReservedWords.pas to
RBuilder\Lib and then rebuild your Delphi project.
To fix Delphi design-time, would require that the the package rbDAD77.dpk be
rebuilt. The .bpl…
Try adding it to daBuildOracleReservedWordList in daSQLReservedWords
--
Nard Moseley
Digital Metaphors
http://www.digital-metaphors.com
You can also implement the DBText.OnFormat event-handler to customize the
default behavior.
Thanks for the feedback. Sorry, it is not natively handled the way that you
envision.
--
Nard Moseley
Digital…
There is a global display format class that is used for all of the
formatting in ReportBuilder.
You can override the built-in formatting by creating a custom display format
class and registering it with ReportBuilder.
I think you need to direct this question to TeeChart tech support.
ReportBuilder simply enables TeeChart to be used within a report.
--
Nard Moseley
Digital Metaphors
in stacked barSeries... ???????????? ? ? ? Comment by nardmoseley March 2004
You would need to programmatically create the datapipeline masterfield
links.
http://www.digital-metaphors.com/tips/LinkDADEPipelines.zip<…
There are some limitations of the DataView linking feature when calculated
fields are added to a dataview.
The DataView linking requres the detail dataview to be ordered on the same
fields as the master dataview. RB does t…
1. To insert the '(' and ')' using the Query Designer, access the Search
tab. In the bottom listview that displays the criteria fields, select the
row at which you would like to insert the ( or ). Press the right mouse
button an…-------------------------------------------------
Tech Tip: How to add OR, ( ) criteria in code
-------------------------------------------------
The 'And' operator is implied. To add an Or, Begin, End to the criteria
you n…
To define a fixed connection for BDE, place a TDatabase component on the
EndUser form and configure the connection parameters. Then set the
Designer.DataSettings.DatabaseName to point to the TDatabase component.
To use SQLDirect with the ReportBuilder Query tools will require a DADE
plug-in. The following web page lists the available DADE plug-ins. It does
not appear that one is available for SQLDirect. You could either create one
or co…
---------------------------------------------
Article: Currency Formatting in ReportBuilder
---------------------------------------------
Currently when formatting currency display formats, ReportBuilder internally
ca…
You need to configure the Designer.DataSettings to use the dbExpressSession.
For an example of using dbExpress check out RBuilder\Demos\EndUser
Databases\Interbase\dbExpress.
--
Nard Moseley
Di…
For Fixed size subreports set subreport.PrintBehavior to pbFixed. To control
whether a fixed subreport continues printing on the next when it overflows,
set subreport.TraverseAllData to True.
--
Nard Mose…
I resarched this and found that in RAP I had to declare a local lDrawCommand
variable. (Rap has limited ability to type cast. I think when you want to
assign a property value to an object, it needs a local object reference.)