nardmoseley
Comments
-
Use the Report.BeforeAutoSearchDialog event to initialize the
AutoSearchField values and set Report.ShowAutoSearchDialog to False,.
-
The Label templates are defined in ppAvIntl.pas and ppAvStd.pas. You can
either modify the implementation section of the source code or you can
create you own template sets and register them instead of the defailt
template se… -
Try impelenting the OnMouseWheel event for the Form that contains the Viewer
component.
Example:
procedure TForm1.FormMouseWheel(Sender: TObject; Shift: TShiftState;
WheelDelta: Integer; MousePos: TPoint; var… -
Yes.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
-
Its still on the ToDo list...
And it is still a feature that we would like to add to a future release.
-
This type of error, indicates that ReportBuilder was compiled to support a
different version of the Borland VCL unit that is installed on your machine.
- TADOConnection is located in Borland VCL source code unit named ADODB.pa… -
This is not a known issue.
1. Try updating to RB 7.04, which was the last produced release for RB 7.x.
(If you did not receive update info, please send an email with your serial
number and registration info to info@digit… -
I think the problem is that you when you create the DataView you do not
assign the Report property. Then you try to use the Dataview.Report property
to save the report - which will be nil at that point. Try tracing the source
Please post with your full name, rather than 'smouge.' This is a requirement
of our newsgroups.
Please see the support section of our web site for the newsgroup guidelines.
1. This is a good example of customizing the des…
I'm working on an example that will show how to customize a bit more...
Here is a downloadable example that shows how to customize the menu and
toolbar items in RB 10.
www.digital-metaphors.com/tips/Designer10_CustomizeMenusAndToolbars.zip
Ok, thanks for pointing that out...
If know how the max number of detail bands you want to print for each
column, you can use the DetailBand.PrintCount.
For example, if you want to print 4 records per column, set
DetailBand.PrintCount to 4 and that will force a …
1. Any sorting must be done by the dataset. The standard way to do this is
via SQL.
2. You can use the Query Designer available from the Data workspace to
define a calculated field. You can sort on the calculated field. …
If you have a master/detail configuration then by default master records
that have no corresponding detail records will be skipped over and will not
appear in the report. To include them
- access the data workspace
…
-------------------------------------------------
Tech Tip: Convert BDE Template Dataviews To ADO
-------------------------------------------------
Currently when DADE is used to create dataviews, the DatabaseName is store…
Glenn, please configure your newsreader to post using your full name. TIA.
Query search parameters are used to dynamically generate the where clause of
the SQL text. (RB does not use filters.).
For the parameters that you do not want to be autosearch you can do one of
the following.
…
Yes. RB can read/write ascii text templates.
You can use Report.Template.LoadFromFile or Report.Template.LoadFromStream
methods.
Thanks for reporting this issue, it will be fixed for the next maintenance
release. I was not able to create a patch because the fix requires a change
to Interface section of the relevant unit.
Please do not cross post.
This question has been answered in the datapipelines newsgroup.
It is currently not possible to use the crosstab as a data source. That
would be a cool feature though.
The TppCrosstab.Matrix property provides access to the data matrix used to
render the crosstab. For more information…Thanks for reporting this, it will be fixed for the next maintenance
release.
If you run the RBuilder\Demos\EndUser\ReportExplorer, this example
Report.SaveAsTemplate needs to be set to True.
I recommend using using the Report.Template.OnNew and
Report.Template.OnLoadEnd events to initalize R…
-------------------------------------
Tech Tip: ReportBuilder Themes
-------------------------------------
ReportBuilder 10 introduces support for Themes (Skins). There are a couple
of options for specifying wh…
This is working as designed. In the report designer, the dialog is not
displayed - we thought that would be annoying, since a user will typically
switch between design and preview quite often.
One option is to define a d…
There is an RB 10.01 patch available that fixes this issue. Please send an
email to support@digital-metaphors.com and request the patch.
If the Query DataView is a detail linked to a master, then special linking
SQL is generated. See the following tech tip.
-------------------------------------------
Tech Tip: Linking DataViews
-----------------------…
I tested here using RB 10 and it works properly.
Must be a bug inRb 4.23
1. Compare to the RBuilder\Demos\Reports\EndUser\ReportExplorer example.
2. Perhaps you did not populate the Selectable value for each row in the
Fields table - just a guess.