nicocizik
Comments
-
Hi Michael,
Two options.
1. Keep track of the repeated value yourself and be sure that once it
changes, the other field will print.
2. The OnDrawCommandCreate event will only fire for the initial repeated
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.
Hi Michael,
You can use the Report.Engine.PrintPosRect property to get the current
position on the page during report generation.
The problem however with trying to calculate the height of a dynamic control
during g…Hi Michael,
ReportBuilder will try to fit as much as it can on a page before breaking to
the next. If the KeepTogether property of a stretchable component is set to
True when the report engine runs out of space on a page, the…Hi Mark,
If you are using DADE for your data access (data tab), I would suggest using
the TdaSQLBuilder object to add AutoSearch criteria to your queries. If
not, try using the Report.CreateAutoSearchField routine like in the…Hi Alex,
In order to do this you will need to manually create your own autosearch
criteria after the first values are entered. Examples of creating your own
autosearch criteria in code can be found in the
\RBuilder\Demo…Hi Alex,
Try using the TppVariable.ResetType property to determine when you would
like them to reset their value. Setting these variables to reset on group
end should give you the results you are after.
--
Re…Hi Chris,
Take a look at the following example.
http://www.digital-metaphors.com/tips/SkipLabels.zip
--
Regards,
Nico…Hi Alex,
In my testing with RB 10.07, the GetAutoSearchDescriptionLines routine
successfully returns all criteria description for the report and subreports.
This could have been a bug in an earlier version of ReportBuilder. I…Hi John,
I would first recommend calculating the summary values manually using
TppVariable components. All calculations are then kept in the OnCalc event
and you can use that value as you need. From the OnCalc, you should be…Hi Richard,
Yes, ReportBuilder supports TeeChart 8. You can either re-install
ReportBuilder after you install TeeChart, or simply run the
RBTeePackageBuilder application loaded in the \RBuilder\TeeChart\...
directory.Hi Marco,
Thanks for the feedback. We will consider adding this for a later release
of ReportBuilder.
--
Regards,
Nico Cizik
Digital Metaphors
in Feature request: RichText tabs editor Comment by nicocizik March 2008Hi Sheetal,
ReportBuilder does not natively include Excel export. Which third party
tool are you using to do this. For a quicker response, you may want to
contact thier support directly via email.
--
Regards…Hi Sheetal,
Sorry for misleading you. It is possible to save a template (as ascii text)
to a Text field in SQL Server and successfully load it from the database.
In my quick testing I was able to save a report as text to a te…Hi Sheetal,
How are you connecting to the SQL Server database? If you are using the
BDE, you may be running into an issue with the MaxBlobSize being too small.
I would first suggest switching to ADO to access you database how…Hi Sheetal,
If you are loading and saving report templates using the built-in
Template.LoadFromDataBase/SaveToDataBase mechinism, you will need to use a
BLOB field to save the template data (or in SQL Server an Image field).Hi Michael,
The WPTools addon for ReportBuilder is currently used by numerous other
customers successfully. Perhaps some of them will chime in with their
experiences. For a quicker support response about the product, you may…The designer is controlled by the RBuilder.ini file. If you would like to
take control of the initial window state of the designer you can simply
delete this file and assign the Designer.WindowState property manually (or
set this …Hi Eric,
In my quick testing I was able to set the WindowState property successfully
from the PreviewFormCreate event. Which version of ReportBuilder are you
using? Out of curiosity why are you accessing the report object fr…Hi Luis,
If you are using RB 10.x, take a look at the following example on how to
customize the designer menus and toolbars.
in Hide 'Save As' menu... Comment by nicocizik April 2008Hi J-Pierre,
The last autosearch value entered in the autosearch dialog will by default
be present when it is loaded again. If you would like this value to stay
persistent after the reprot has been closed, you will need to sa…Hi Dennis,
Thanks, I was able to see the problem. This seems to be a timing issue.
Try setting your variable to reset on Group End rather than Group Start. It
seems Group Start is occuring too late to include the first value…Hi Dennis,
For future reference, please send all attachments to
support@digital-metaphors.com.
I am unfortunately unable to run your template because it uses DBISAM tables
that I do not have. I did notice however t…Hi Dennis,
I'm not clear which demo you are talking about. Have you tried downloading
a trial copy of the latest version of ReportBuilder and testing with that?
Take a look at the following article on how to make calculations…Hi Larry,
Are you able to recreate this issue with one of the End User demos located
in the \RBuilder\Demos\3. End User\... directory? If so, please provide me
with the exact steps I can take to recreate the problem here on m…Hi Alberto,
By design, there is only one detail band per report/subreport. This band is
printed each time a new record is traversed in the connected dataset. I
would suggest spending some time going over the ReportBuilder De…Hi Alberto,
If "obj" is in fact a TppDetailBand object, you would need to reference its
Parent property to successfully access its parent.
obj := TppDetailBand(Sender);
if (obj.Parent is TppChildReport) then
For future referece please use your real name when posting to these
newsgroups.
The intent of PrintToDevices is simply generate the report pages to
connected devices (Viewer, Archive, Printer, etc). The developer has total