nicocizik
Comments
-
Hi Amauri,
There are two ways to do this. First, you can find your summary value using
a calculated field in your database and access that to calculate the
percentage at the beginning of the report. This method is guarenteed t… -
Hello,
Be sure that all the RAP passthru methods are implemented correctly. Be
sure to double check that the Signiture is correct with a semicolon at the
end. Then be sure to check that the function call in RAP matches this
Dave,
Unfortunately if you are customizing the ReportBuilder source, you cannot
alter any of the Interface sections if you still would like to use RAP.
--------------------------------------------------
Article: RAP …Thanks Vincent,
I'll take a look at it and get back to you asap.
--
Hi Vincent,
If possible, please send a small example in .zip format to
support@digital-metaphors.com with a description on how you would like it to
look and I will take a look at the design for you.
--
Hi Vincent,
Sorry for the confusion. When setting the number of columns using the
Report.Columns property, a new column will not start unless the first column
runs out of room on the page. To answer your question, only one col…Hi Vincent,
The number of columns is determined by the number of columns you define in
the page setup. For instance, if you create a report with 3 columns and
there is only enough data to fill two columns, the third column will…Hi Nicola,
Sorry, I must have missunderstood your first inquiry. RAP is designed to
allow each report to be completely portable and independent of a reporting
application. For this reason there is no such thing as an applicati…Hi Nicola,
Inside the treeview in the upper left hand corner of the Calc tab, if you
right click and select "module" from the popup menu, you will get access to
all the global options in RAP. From the Declarations section you c…Hi Kevin,
Below is a good example of accessing Report Parameters from RAP. This
example accesses a boolean datatype but the general idea should be the same
in your case. Hope this helps.
in Passing Parameters Comment by nicocizik May 2004This question was answered in the General Newsgroup.
--
Hello,
Please see the article below for information on how to extend RAP to include
the methods you need to use.
--------------------------------------------------
Article: Extending RAP
------------------------…This is a multi-part message in MIME format.
This is a multi-part message in MIME format.
Please do not cross post. This question has been answered in the General
newsgroup.
--
Hi Brett,
Sorry about that, the link should work correctly now.
--
Hi Ray,
Try using the Report.AfterPrint event. Something like the following...
procedure ReportAfterPrint;
begin
if Report.PrinterDevice <> nil then
ShowMessage('Printed to Printer');
end;
…Hi Miguel,
Sorry for the delay. The last email I sent you was on August 12th
requesting the reports or database tables in question. It seemed you had
only sent me the end-user demo without any report templates to test. I
Hi Miguel,
I am unable to recreate this behavior on my machine. Please send a small
example of the OnGlobalCreate event firing more than once per print using
the DBDemos database in .zip format to support@digital-metaphors.com …Good stuff. Thanks for the info
.
--
Hi Dave,
The TextWidth method is not available in RAP. You will need to create a
passthru function to gain access to the TextWidth method.
--
Hi Johnny,
You can set the DetailBand.BandsPerRecord property to define the number of
copies you want of a record printed. This property is available as a
published property of the detail band at design time or in RAP. I wou…Hi Silverio,
You need to add ppChrtUI to your 'uses' clause. Adding this will enable the
user interface for the TeeChart editor.
------------------------------------------------------------
Article: Controlling the …Hi TLCom,
Instead of a TppLabel in the header, try using a TppVariable component with
the LookAhead property set to True. Then, inside the OnCalc event of the
Variable you are making your calculations in (in the detail band),…Hi Ruud,
I did some searching through the RB source and it looks like the pipeline is
checking for records in your dataset just before the OnOpen event is called.
Since you are waiting until then to fill your dataset, the pipe…Hi Ruud,
Try placing a stop in the OnOpen event and see how many times this is fired.
I believe this may be where the problem is occuring. As an alternative, you
might try changing the SQL code before you load the report, sep…Hi Ruud,
Are you able to move through the pages of your report one by one? Does this
behavior happen with every report you try to run using DOA and oracle? Try
creating a very simple report with a single dataset and no event…Hi Vincenzo,
You will need to create a RAP pass thru function to gain access to these
properties. Using a pass thru function you could more or less use the same
code you posted below and still get the benefits of its output i…Hi Rick,
Which event are you using to alter the SelAttributes? If you would like,
you can send a small example demonstrating what you are doing to
support@digital-metaphors.com in .zip format and I'll take a look at it for